Skip to main content

How To Install VB6 on Windows 7

After surfing around the net, I've found very little information regarding installation of VB6 on Windows 7. Most of the information out there is for Vista, and most of it is queries for assistance.

You may be wondering why someone would want to utilize VB6 on a shiny new operating system like Windows 7. Or even Vista for that matter.

There are about a bazillion legacy applications out there that have to be supported, and people like me who speak VB6 need to have the tools installed on our workstations in order to implement and test updates and such for these legacy applications.

It also helps out when I need to squirt out a quick tool for use in my daily work.

So without further delay, here is the process that I have used on my Windows 7 machines to install Visual Basic 6.

1. Turn off UAC.

2. Insert Visual Studio 6 CD.

3. Exit from the Autorun setup.

4. Browse to the root folder of the VS6 CD.

5. Right-click SETUP.EXE, select Run As Administrator.

6. On this and other Program Compatibility Assistant warnings, click Run Program.

7. Click Next.

8. Click "I accept agreement", then Next.

9. Enter name and company information, click Next.

10. Select Custom Setup, click Next.

11. Click Continue, then Ok.

12. Setup will "think to itself" for about 2 minutes. Processing can be verified by starting Task Manager, and checking the CPU usage of ACMSETUP.EXE.

13. On the options list, select the following:
* Microsoft Visual Basic 6.0
* ActiveX
* Data Access
* Graphics

All other options should be unchecked. Click Continue, setup will continue.

14. Finally, a successful completion dialog will appear, at which click Ok. At this point, Visual Basic 6 is installed.

15. If you do not have the MSDN CD, clear the checkbox on the next dialog, and click next. You'll be warned of the lack of MSDN, but just click Yes to accept.

16. Click Next to skip the installation of Installshield. This is a really old version you don't want anyway.

17. Click Next again to skip the installation of BackOffice, VSS, and SNA Server. Not needed!

18. On the next dialog, clear the checkbox for "Register Now", and click Finish.


The wizard will exit, and you're done. You can find VB6 under Start, All Programs, Microsoft Visual Studio 6.

I've not tested this on Vista, but it should work for you there as well. Give it a try, and let me know how it works!

Enjoy!

UPDATE

You might notice after successfully installing VB6 on Windows 7 that working in the IDE is a bit, well, sluggish. For example, resizing objects on a form is a real pain.

After installing VB6, you'll want to change the compatibility settings for the IDE executable.

1. Using Windows Explorer, browse the location where you installed VB6. By default, the path is C:\Program Files\Microsoft Visual Studio\VB98\

2. Right click the VB6.exe program file, and select properties from the context menu.

3. Click on the Compatibility tab.

4. Place a check in each of these checkboxes:
* Run this program in compatibility mode for Windows XP (Service Pack 3)/li>
* Disable Visual Themes/li>
* Disable Desktop Composition

* Disable display scaling on high DPI settings



After changing these settings, fire up the IDE, and things should be back to normal, and the IDE is no longer sluggish.

source : http://www.fortypoundhead.com/

Popular posts from this blog

Free Stuff

I have free stuff that can i share with you. The free stuff is free magazine, free domain, free hosting, free rapidshare link generator and free money. 1. Free Magazine. You can get free magazine for you to read. There are many topics that can you choose. These are the topics that can you choose : Agri c ulture Automotive Biotechnology & Pharmaceuticals Computers Construction Education Engineering Executive & Management Finance Food & Beverage Government Healthcare Human Re sources Industrial & Manufacturing Internet Information Technology IT - Data Management IT - Security IT - Software & Development IT - Storage Insurance Mechanical / Machine Meetings & Travel Multimedia Network / Communications Purchasing & Procurement Retail Sales & Marketing Small & Medium Business Telecom & Wireless Trade/Professional Services Transportation & Logistics Utility & Energy Many topics...

Centos 5 Live CD, Rescue CD or Workstation

Have you ever try CENTos 5 Live CD? I had tried it. This Centos 5 Live Cd can be use as rescue cd and workstation cause it based on CentOS 5.0 i386 distribution. The following software that include with it : OpenOffice.org 2.0.4 Firefox 1.5.0.10 Thunderbird 1.5.0.10 Gaim-2.0.0 Scribus-1.3.3 xchat-2.6.6 k3b-0.12.17 Gimp-2.2.13 And for rescue, there is another software or tool : Full set of LVM and RAID command line tools QTParted Nmap and NMapFE Graphical Traceroute samba-3.0.23c with cifs kernel support to connect to Windows file shares System Log Viewer GUI Hardware Device Manager Unfortunately, in first release, this Centos Live CD doesn't hvae installer like Fedora Live CD.  And i have a problem when using it as workstation, i can connected to network just for a while. But, when i restart network service it worked but for a while and then it was drop. You have a same problem or solution ? Please tell me.  I will be appreciated it. Last, if you want to use root account, use thi...

Installation Of SMS Server Tools 3 And PlaySMS On Debian Server

This tutorial will show you how you can set up an SMS server on Debian with playsms and smstools. In my example I have used an old Nokia 5140i with a USB datacable. What we need before we start is apache2, mysql server, php5, lynx, wget, curl. Now we install updates, and install dependencies: apt-get update apt-get upgrade apt-get install apache2 mysql-server php5 php5-cli php5-cgi php-pear php-db phpmyadmin make gcc sendmail lynx wget curl Now create a password for mysql root user, and remember it. Installing playsms adduser playsms mkdir -p /var/www/playsms mkdir -p /var/spool/playsms mkdir -p /var/log/playsms chown -R www-data /var/www/playsms chown -R www-data /var/spool/playsms chown -R www-data /var/log/playsms And next download latest version of playSMS, find latest here, or grab my url: http://sourceforge.net/projects/playsms/ wget http://downloads.sourceforge.net/project/playsms/playsms/Version%200.9.5.2/playsms-0.9.5.2.tar.gz This will extract playsms to /usr/local/src. tar ...