Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Running VS.NET and VB.6 on same machine - what problems to expect?

Status
Not open for further replies.

dhodges

Programmer
Dec 22, 2003
1
US
hello everyone,

I'm trying to run vb 6 on a machine that already has visual studio.net. When I try to run a vb6 project i get a compile error: can't find project or library on the MID function????? Does vs.net overwrite vb6 functions?

I installed vs.net first and then installed vb 6.

Any help would be greatly appreciated.
 
Your references for the project must have a reference to
Microsoft Visual Basic.Net Runtime
and you need a
Imports Microsoft.VisualBasic
at the top of the source file.

I have eliminated Microsoft.VisualBasic in favor of "pure" Framework object methods e.g. .Substring instead of Mid, .ToString("###.00") instead of Format etc.


Forms/Controls Resizing/Tabbing Control
Compare Code (Text)
Generate Sort Class in VB or VBScript
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top