Hi Everybody
when i write DLL in VC
Code:
Void __stdcall WGS84TOVN99( char inStr[100], int j, char outStr[100] );
{
// Some command
}
I call it in
VB:


Public Declare Function WGS84TOVN99 Lib Path+"\.dll" (ByRef InputLine As String, ByVal i As Long, outputLine As String)
Dim inStr as String
instr="My input String"
Dim outStr as String
Call WGS84TOVN99(inStr,1,outStr)
But when I debug in VC inStr not correct, that why program dump.
Can you help me
Thanks