Hello,
I encounter the following problem with the following code:
commands running in the VFP environment but in a prg file do not load the related functions and procedures
the oddity is like the step-by-step execution in the debugger, after we loaded the object, the functions are not visible but switching in the visual environment these are accessible
how can I solve the problem?
** ole error code 0x80020006: Unknown name.
The code was tested in Vfp 8.0, Vfp 8.0 SP1, Vfp 9.0
SO Win.8.1
I encounter the following problem with the following code:
Code:
lRsp=.T.
oDude=CREATEOBJECT('dude.CFD_DUDE')
IF !lRsp
?? CHR(7)
WAIT ' Nu s-a reusit instantierea driverului casei de marcat ! ' ;
WINDOW TIMEOUT 3
ENDIF
ON ERROR
* conectare casa de marcat
[COLOR=#EF2929]nErr=oDude.open_Conection()[/color] && **
IF nErr#0
=CodErr(nErr)
ENDIF
WAIT ' Astept ... ' WINDOW TIMEOUT 25
=oDude.close_Connection()
commands running in the VFP environment but in a prg file do not load the related functions and procedures
the oddity is like the step-by-step execution in the debugger, after we loaded the object, the functions are not visible but switching in the visual environment these are accessible
how can I solve the problem?
** ole error code 0x80020006: Unknown name.
The code was tested in Vfp 8.0, Vfp 8.0 SP1, Vfp 9.0
SO Win.8.1