Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
FoxPro Crash When I do...
Message
General information
Forum:
Visual FoxPro
Category:
Troubleshooting
Miscellaneous
Thread ID:
00080054
Message ID:
00080098
Views:
24
>In the LoadSave method I use PEMSTATUS() and the macro "&" commands.
>>What can cause this?
Jean-Rene,

Can you post the code in LoadSave, that is where your problem likely is and it is very hard to guess what might be doing it without seeing the code.

Calling PEMSTATUS() more than one time in a line of code can leave object references lying around. For example;

IF PEMSTATUS(...) OR PEMSTATUS(...)

That can be fixed by doing;

llStatus1 = PEMSTATUS(...)
llStatus2 = PEMSTATUS(...)
IF llStatus1 OR llStatus2
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform