procedurecdll() and proceduredll() are not working.
ex.
procedurecdll savesnapshot(name.s)
endprocedure
vb declare is as follows. declare sub also.
Public Declare Function savesnapshot Lib "c:\temp\netdll.dll" (ByVal name As String)
when i use savesnapshot text1.text i get a bad calling convention. I can call a dll if it doesn't take parameters, but not this.
funny thing is the function works but i guess then its done calling the function, thats when if fails out.