Top "Vb6" questions

Visual Basic 6.0 (VB6) was the final COM-based version of the VB programming language and IDE, last updated in 2004.

Getting VB6 ADO application to work in Windows 7

I have inheritted several old VB6 applications that currently cannot be rewritten in .NET. These old applications all use ADO, …

windows-7 vb6 ado
VB6 Activex component can't create object

I am making a few minor updates to a VB6 application. It runs on a windows 2000 server connected to a …

vb6 activex sql-server-2000 windows-server-2000
convert vb6 project to .net using VS2010 Express?

I can't seem to convert my vb6 ActiveX dll project (.vbp) to .net using VS2010 Express. Is there another way? …

visual-studio visual-studio-2010 vb6 vb6-migration
How do I create a manifest file to launch application with admin privileges?

I want to create a manifest file for my VB 6.0 program, so that when I launch my application, the OS …

windows vb6 uac manifest
No permission to access a private MSMQ

On an XP machine there is a private messagequeue that was created by a .net service. When I want to …

vb6 msmq
Specify a default driver for ODBC

I have a legacy VB6 app which builds a DSN based on a parameter in a config file. The parameter …

vb6 odbc adodb dsn
Should I use Call keyword in VB/VBA?

I use the Call keyword when calling subs in VB/VBA. I know it's optional, but is it better to …

vb.net vba vb6 call
MSFlexGrid Edit VB6

Currently I am working on vb6 application. I want to show data in MSFlexgrid But there is no edit Facility …

vb6 msflexgrid
Exe Crash At ADODB.Connection with "Class does not support Automation"

One machine having MSVBVM60.dll ver 6.0.97.82, say OLD. Other machine having MSVBVM60.dll ver 6.0.98.15, say NEW. Exe created from NEW …

com vb6 ado
Ending a Case Early

So I have something like the following in Vb6; Select case Case case "Case0" ... case "Case1" if Condition Then Exit …

vb6 exit select-case