VB6 / VB.NET compatability question

  • Thread starter Thread starter Russell Verdun
  • Start date Start date
R

Russell Verdun

In vb.net, what is the equivalent of the VB 6 Get statement?

Example to be used:
VB-6 code;
Get FileHandle, , Type_Variable


I would to accomplish this in vb.net get access to a binary file and assign
it's data to a structure.
 
Russell Verdun said:
In vb.net, what is the equivalent of the VB 6 Get statement?

Example to be used:
VB-6 code;
Get FileHandle, , Type_Variable

I would to accomplish this in vb.net get access to a binary file and
assign it's data to a structure.

Use 'FileGet', 'Get' doesn't exist any more.
 
Back
Top