I am upgrading a VB 6 project to VB.net.
The VB 6 project uses the Inet control, I have installed the registry update
that came with VS.net to allow me to use VB6 controls within my projects.
However after the upgrade compleates I get the following error, with this
line of code:
Inet.Execute(...
more >>
The Microsoft Visual Basic Language Specification, version 8.0, is now
available for download. This specification provides a complete description
of the language used in Visual Basic 2005. Some of the new topics covered in
this version include:
* Generic types and methods
* Custom event ...
more >>
My adodc object won't work in my converted .net app. In order to test the
conversion process I wrote a simple app that used a datagrid and an adodc
object in vb6. I then converted the project to vb .net and the app woudln't
work. The first problem was that their were errors saying that I need ...
more >>
I have the following code in VB6:
Dim obj as Object
For Each obj in MyCollection
obj.MySub(argument)
Next obj
MyCollection is a collection of objects of different types of my own
creation. Each of these objects has a subroutine named MySub which takes an
argument.
Upon upgrade ...
more >>