There is no direct equivalent. Your dilemma is discussed and solutions given here:
http://www.thescarms.com/vbasic/vb6vsvbnet.aspx
Most APIs that take numeric arguments
expect 32-bit values. In VB6 that's a
Long data type. In VB.NET a long is
64-bits and will not work with 32-bit
API calls. Your .NET API parameters
will have to be changed or cast to the
Integer data type prior to invoking
the API.
Many APIs will no longer be callable
from VB and others will have
replacements. Some that pass strings
will need tweaking to pass the correct
string or Null value. Check the VB.NET
Help for more information.
APIs will need to be handled on a case
by case basis. Your best bet is to
isolate all your API calls so changes
only need to be made in a single
location in your code. The upgrade
tool will attempt to convert API calls
by creating wrappers for them.
However, manual intervention will be
required.