ANSI strings

  • Thread starter Thread starter Dave Cullen
  • Start date Start date
D

Dave Cullen

Can I force VB.NET to use non-Unicode strings when passing an argument
to an outside process? The null in the 2nd byte of each "character" is
being interpreted as a string terminator in my dll.

Thanks
 
Dave Cullen said:
Can I force VB.NET to use non-Unicode strings when passing an argument
to an outside process? The null in the 2nd byte of each "character" is
being interpreted as a string terminator in my dll.

'Private Declare Ansi Function...'.
 
Back
Top