Hi,
After I add some code, in particular a new procedure in the main PRG that I call from another method in a form, when build I receive the following error/warinng -> Visual Class Library
\_base.vcx has the following errors:
Program SETOBJRF - Undefined
I didn't touch the base class and never see that function anywhere. The only thing that comes to my mind is the parameter that I'm passing trough the methods. I used a variable before and then I read about EXTERNAL command, so I tried to use EXTERNAL ARRAY and pass an array instead of a variable. However nothing changed.
This below is a sample of how I'm doing the calls:
PRG in which there is the procedure Check_delay()
FORM METHOD
Did anyone encounter this error? Thanks in advance for any help!
After I add some code, in particular a new procedure in the main PRG that I call from another method in a form, when build I receive the following error/warinng -> Visual Class Library
\_base.vcx has the following errors:
Program SETOBJRF - Undefined
I didn't touch the base class and never see that function anywhere. The only thing that comes to my mind is the parameter that I'm passing trough the methods. I used a variable before and then I read about EXTERNAL command, so I tried to use EXTERNAL ARRAY and pass an array instead of a variable. However nothing changed.
This below is a sample of how I'm doing the calls:
PRG in which there is the procedure Check_delay()
Code:
EXTERNAL ARRAY aResult
..... some code to fill the array, then return the 1st element ...
DIMENSION aResult[1]
aResult[1] = cFilter
return aResult
FORM METHOD
Code:
DIMENSION cFilter[1]
cFilter[1]= Check_delay()
IF !EMPTY(cFilter)
ShowContrattiPec(.F., .F., .F.,cFilter)
ENDIF
Did anyone encounter this error? Thanks in advance for any help!