Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Object is not released
Message
From
10/07/2003 13:46:33
 
 
To
10/07/2003 10:52:27
General information
Forum:
Visual FoxPro
Category:
Troubleshooting
Miscellaneous
Thread ID:
00808842
Message ID:
00808939
Views:
27
What you are describing is indicating that there is still an existing object reference to the object you think you have released. This reference will keep it alive until its cut. This is why it disappears when you call CLEAR ALL. Have a look in the "locals" window of the debugger and watch out for existing objects.

nox=create("form")
nox.AddObject("label","label")
nox.Show

alive=nox.label &&create an additional reference
nox.Release && nox released but form still visible
release nox && form is still there
nox.release && object nox does not exist any more

RELEASE alive && gone
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform