richrichrich
Programmer
I call a VB dll from VFP7 to do some process and expect to return some infomation or flag back to VFP application for further process.
Lets assume that the VFP program will continue if "xFlag" is true.
Please let me know how to do that? Thanks!
e.g.
oapp = CREATEOBJECT("VBdll.VBfunction")
oapp.test_info(str1,str2)
if xFlag
do A_process
else
do nothing
endif
Lets assume that the VFP program will continue if "xFlag" is true.
Please let me know how to do that? Thanks!
e.g.
oapp = CREATEOBJECT("VBdll.VBfunction")
oapp.test_info(str1,str2)
if xFlag
do A_process
else
do nothing
endif