doubt

while i runnin the program , i get this type of error.
how to get over it?

error:
/apps/tmp/p48189_xxcm03.ped Shared variable l_error has not yet been created.
(392)
 

DevTeam

Member
while i runnin the program , i get this type of error.
how to get over it?

error:
/apps/tmp/p48189_xxcm03.ped Shared variable l_error has not yet been created.
(392)
You get this error because you must be trying to access a shared variable without having defined it as "NEW SHARED".

I think the program you are running contains such definition : "DEF SHARED VARIABLE l_error AS ...". It implies that your program may be called by another one which contains this same definition with the "NEW SHARED" keyword...

If your program is the first run, then you have to change the variable definition to make it "new shared"...
 

Casper

ProgressTalk.com Moderator
Staff member
Or you are using the client parameter -noshvarfix.
That can give these errors too....

Regards,

Casper.
 
Top