ariftheruvath
Programmer
I ve built a Single Threaded DLL with VFP.9.0
project = mydll
programme name= mydll
DEFINE CLASS msgtest AS SESSION OLEPUBLIC
FUNCTION msg
WAIT "sdfsf"
ENDFUNC
ENDDEFINE
****************
and tested :-
x = CREATEOBJECT("mydll.msgtest")
x.msg()
returns an error msg ' OLE Idispatch exception code 2031....error in line 3 user-interface operation not allowed this time.2031'
im working around making DLL with vfp 9.
the above code was just for a trial.
project = mydll
programme name= mydll
DEFINE CLASS msgtest AS SESSION OLEPUBLIC
FUNCTION msg
WAIT "sdfsf"
ENDFUNC
ENDDEFINE
****************
and tested :-
x = CREATEOBJECT("mydll.msgtest")
x.msg()
returns an error msg ' OLE Idispatch exception code 2031....error in line 3 user-interface operation not allowed this time.2031'
im working around making DLL with vfp 9.
the above code was just for a trial.