Visual Basic 6.0 (VB6) is the third generation event-driven programming language and integrated development environment (IDE) from Microsoft for its COM programming model.

learn more… | top users | synonyms (1)

72
votes
18answers
17k views

How do you migrate a large app from Visual Basic 6.0 to VB.NET? [closed]

My company makes a monolithic piece of software that our customers use to run their car dealerships. The original application was written in Visual Basic 6.0, and it has grown substantially over the ...
28
votes
5answers
107k views

How to parse XML in VBA

I work in VBA, and want to parse a string eg <PointN xsi:type='typens:PointN' xmlns:xsi='<http://www.w3.org/2001/XMLSchema-instance>' ...
6
votes
8answers
3k views

How to create a simple install system for VB6 on XP/Vista? [closed]

Heavy emphasis on simple. I've never made an installer and I'd rather not have to learn much. A system that I could hand a pile of files to and it would make some smart guesses about where to put them ...
28
votes
6answers
44k views

VBA array sort function?

I'm looking for a decent sort implementation for arrays in VBA. A Quicksort would be preferred. Or any other sort algorithm other than bubble or merge would suffice. Please note that this is to work ...
15
votes
3answers
19k views

Is there a vb6 decompiler?

I lost the source code from one project I did on the company I'm working for and haven't been able to find a vb6 decompiler, does that even exists? Forgot to say that I only have the EXE. I ...
60
votes
39answers
8k views

Should we select VB.NET or C# when upgrading our legacy applications? [closed]

At the company where I work, we have a number of legacy applications written in Visual Basic 6.0. Without casting aspersions on the developers who wrote them, suffice it to say we have decided to ...
11
votes
7answers
19k views

What is the best way to consume a web service from VB6?

I need to consume an external web service from my VB6 program. I want to be able to deploy my program without the SOAP toolkit, if possible, but that's not a requirement. I do not have the web service ...
11
votes
3answers
3k views

Where should I store application specific settings?

I've been asked to update a VB6 application that's been running on WinXP for the last 6 years. The client wants to use Windows 7. Up until now, the app stored its settings in an INI file located in ...
17
votes
4answers
19k views

A Simple C# DLL - how do I call it from Excel, Access, VBA, VB6?

I have a simple class library written in c#. using System; namespace TestDll { public class Test { public string HelloWorld { get { ...
29
votes
11answers
14k views

How do I determine if an array is initialized in VB6?

Passing an undimensioned array to the VB6's Ubound function will cause an error, so I want to check if it has been dimensioned yet before attempting to check its upper bound. How do I do this?
9
votes
3answers
2k views

Are there any good TDD tools or resources for VB6?

Yea i know i'm way behind times but what i've got here is a antique VB6 editor app which i believe that no one will be upgrading to .NET soon. It uses a couple of third party DLLs tools and as it's ...
10
votes
5answers
5k views

How can you force VB6 to use the DLLs and OCXs from the app directory?

I want to put my dependent files in the app directory. I seem to remember that you can force VB6 to use the files in the local directory only. Any hints?
21
votes
3answers
14k views

Is There a JSON Parser for VB6 / VBA?

I am trying to consume a web service in VB6. The service - which I control - currently can return a SOAP/XML message or JSON. I am having a really difficult time figuring out if VB6's SOAP type ...
6
votes
12answers
1k views

Learning VB6

I'm moving from Java Development to a MSFT environment. The app is currently written in VB6 and while its going to go to VB.NET/C# in the future, I need to find a way to pick up VB6 now. I'm told ...
2
votes
4answers
5k views

64 bit C# with a 32 bit VB6 COM object

I have a 32 bit in-proc STA VB6 dll. I sadly cannot do anything about this. My C# component greatly benefits from being 64 bit. Is there anyway to call/interface with this 32-bit dll from my 64 bit ...
19
votes
11answers
25k views

How can I convert VB6 code to C#? [closed]

Does anyone know a way to convert from VB6 code to C#? Is there a tool that can do this for me?
8
votes
6answers
3k views

Conversion tool comparisons for visual basic 6.0 [closed]

Has anyone here used either of the following (or any other tool) to convert your vb6 code to a .net language? Artinsoft's upgrade companion (converts to c# and vb.net) vbmigration partner ...
5
votes
4answers
2k views

What's the best option to display Unicode text (hebrew, etc.) in VB6

I have some customers who want to use our speech therapy software in Hebrew. The programs are in VB6. The best option I'm aware of are: use the Forms 2.0 controls from MS Office, but you can't ...
1
vote
5answers
5k views

To use thread in programming in vb6

I am programming to generate keys in hexadecimal using different random function and write it in the text file. I have only two cmd buttons and status bar which displays the current time and the ...
16
votes
9answers
16k views

Has anyone had success with Visual Studio 6 on Windows 7?

VS6 popped off a series of errors before bombing out completely during install on Windows 7. I specifically need to get VB6 functioning on Windows 7. Anyone having any luck?
1
vote
2answers
2k views

Decompiler for Visual Basic 6 program?

In the FAQ of the Boomerang decompiler (which currently only decompiles to C-code) they make a brief mention that Visual Basic exes happen to include a lot of metadata, so a Visual Basic decompiler ...
6
votes
6answers
2k views

Best Strategy for moving from VB6 to .NET [closed]

My company has tons of legacy applications that are written in VB6. We are in transitions from moving VB6 applications to .NET (3.5 specifically). What would be the best strategy for moving form VB6 ...
1
vote
2answers
435 views

Good tutorial for Visual basic 6? [closed]

I am C++ programmer and I need to make some changes to VB6 code. And I am looking for a good VB6 tutorial to get started. Thanks a lot .
0
votes
3answers
1k views

Making a C# kill event for a vb6 app?

I have a VB6 app that processes for a very, very long time. Killing it directly is not feasible, so I would like to set some sort of flag in the VB6 app. If in my C# app I decide to shut it down, I ...
19
votes
8answers
7k views

Cancelling a long running process in VB6.0 without DoEvents?

Is it possible to cancel out of a long running process in VB6.0 without using DoEvents? For example: for i = 1 to someVeryHighNumber ' Do some work here ' ... if cancel then ...
30
votes
10answers
22k views

VB6 Running on Windows 8?

Assuming that vb6 does not run on Windows 8 because the VB6 run time libraries are not shipped with Windows 8, would it not be possible to install the VB6 run time library on Windows 8 and then then ...
10
votes
6answers
3k views

what is the better way to handle errors in VB6

I have VB6 application , I want to put some good error handling finction in it which can tell me what was the error and exact place when it happened , can anyone suggest the good way to do this
6
votes
4answers
5k views

Is it possible to retrieve the call stack programmatically in VB6?

When an error occurs in a function, I'd like to know the sequence of events that lead up to it, especially when that function is called from a dozen different places. Is there any way to retrieve the ...
5
votes
4answers
953 views

Different numbers from 1 to 10

I want to generate 10 different numbers from a range of 0-9. the desired output may look like this, 9 0 8 6 5 3 2 4 1 7 Dim arraynum(9) As Integer Dim crmd As Boolean Dim rmd as integer For i = 0 To ...
2
votes
1answer
847 views

Internationalization of a VB 6 Application

Has anyone internationalized a VB 6 application? Any helpful resources or tips/tricks you can offer?
6
votes
6answers
2k views

VB runtime functions in VB.NET for VB6 programmers [closed]

I'm preparing a class on Visual Basic 2005 targeting Visual Basic 6 programmers migrating to the .NET platform. My primary concern is to teach my students the best practices for developing in .NET, ...
13
votes
5answers
26k views

Compile a DLL in C/C++, then call it from another program

I want to make a simple, simple DLL which exports one or two functions, then try to call it from another program... Everywhere I've looked so far, is for complicated matters, different ways of linking ...
10
votes
14answers
4k views

Visual Studio 6 tips and tricks [closed]

Some of us would invariably have to support 'legacy' code using Microsoft's Visual Studio 6.0 IDEs which - although opinions would differ - are generally regarded to be less user friendly compared to ...
16
votes
7answers
17k views

Does the VB6 IDE run on Windows 7 64-bit?

We're approaching a point of replacing several of our developer PCs and would like to move up to 64-bit to maximize the hardware/life of the PCs but we also need to support several legacy VB6 ...
26
votes
22answers
5k views

Visual Basic 6.0 lives forever like Cobol

In the last 3-5 years I have been renewing an insurance application and a commmercial integration toolkit based on Visual Basic 6.0. According to Microsoft's "It just works policy" the IDE is no ...
7
votes
4answers
4k views

Tool for analyzing VB6 source code (like Understand from SciTools)

Does anyone know of a tool to analyze/navigate VB6 source code like the tool from scitools? http://www.scitools.com/products/understand/
12
votes
5answers
9k views

What does the Call keyword do in VB6?

There's some code in our project that looks a bit like this: Private Sub Method1() Call InnerMethod End Sub Private Sub Method2() InnerMethod End Sub Private Sub InnerMethod() '' stuff ...
4
votes
3answers
2k views

VB6: enabling mousewheel for controls

can someone tell me if there's an easy way to enable mousewheel for controls (in runtime)? i want to use the wheel for scrolling controls as soon as the mouse is over them. thx
3
votes
5answers
2k views

commenting VB code

How to comment multiple lines of code/block of code in VB?
8
votes
3answers
15k views

Escape double quote in VB string

I have used following piece of code to execute schtasks command from VB6. While executing it, ignores folder if they contains spaces. For example, "C:\program files\test\test.exe" will be converted ...
4
votes
6answers
2k views

What are the differences between VB.NET and previous versions of VB? [closed]

I'm reasonably familiar with the various forms of VB that existed prior to .NET (VB6, VBA, VBScript...), but have yet to delve into The Sweet New Flavor that is VB.NET. So I would very much ...
3
votes
4answers
14k views

Free VB 6.0 Decompiler? [duplicate]

Possible Duplicate: Is there a vb6 decompiler? Is there such a thing as a VB 6.0 decompiler? If so are there any free products that do this?
1
vote
3answers
995 views

How to use VB6 debugger on Outlook property page OCX?

Using VB6, I have created an Outlook plugin, that has a property page. The property page is an OCX control. When I compile the project to an OCX file, and then run OUTLOOK, things work fine: I am ...
21
votes
7answers
30k views

Will Windows 7 support the VB6 runtime?

I can't seem to find a straight answer on this. It appears that Visual Studio 6 won't be supported, but I'm only concerned with the runtime. We have some legacy apps that we'd rather not rewrite, but ...
10
votes
1answer
2k views

How can I pretty-print XML source using VB6 and MSXML?

I've been looking after this for months now and I mostly found sites asking the same question. The answers I did found were always for .NET or C++ or involved XSLT.
10
votes
5answers
19k views

How to convert char * to BSTR?

How can I pass a char * from C dll to VB Here is sample code: void Cfunc(char *buffer,int len) { BSTR buf_bstr = SysAllocString((BSTR)buffer); VBptr.VBfunc(buf_bstr,len); } This function is ...
6
votes
2answers
6k views

IsDate function returns unexpected results

How come IsDate("13.50") returns True but IsDate("12.25.2010") returns False?
6
votes
6answers
6k views

Download File - VB6

Does anyone know how to download a file (without opening a webpage), and save it to a directory in Visual Basic 6.0?
12
votes
4answers
4k views

Self Inspection of VB6 UDTs

I have a feeling the answer to this is going to be "not possible", but I'll give it a shot... I am in the unenviable position of modifying a legacy VB6 app with some enhancements. Converting to a ...
4
votes
2answers
5k views

How to download multiple files in VB6 with progress bar?

I want to download multiple files (mostly images) from VB6 application. presently i m using URLDownloadToFile but it allows only one file at a time and there is no progress bar. I want to download ...

1 2 3 4 5 14