Search Results

1
vote

Using app.config with Interop Controls

Beth Massi has a blog post that describes how to use a config file for an Interop Control with VB 6.0. …
2
votes

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

Check out this article by Scott Swigart on the MSDN VB 6.0 Resource Center. Calling Web Services from Visual B …
1
vote

What is the best way to compare .NET performance vs. VB 6 performance at a customer site?

If you're talking about effectively the same client application written in VB 6.0 and VB.NET then the VB 6.0 app will most likely get to the first screen more quickly (because of .NET JIT compliati …
1
vote

E_NOINTERFACE after upgrade of VB6

What is the Version Compatibility setting in your VB 6.0 project? (See the Component tab of your project properties) If it's not Binary Compatibility then the GUIDs for the interfaces and e …
5
votes

What’s the best way to use .NET classes from Visual Basic 6?

There's lot's of information available at the VB Fusion Developer Center on MSDN. Of particular interest will be …
1
vote

How do I call a Web Service in VB6?

You need to create a Type Mapper. Microsoft SOAP Toolkit Type Mappers If you have the opportunity, …