This happens when you create some objectes in that data session and did not kill them.
Try this is command window
x= ""
DO FORM xx
(form with private data session having the init code:
x=CTREATEOBJECT("Custome")
Close the form (by clicking on window close)...
There could be multiple reasons for GPF, most often one is a bad control source. Check and see if the control source for each object is ok and available.
Satyen
Since these forms are modal, you cannot run a event automatically after the read events. So, start a timer object and re-run the menu after a specified interval.
Satyen
When a modal form FoxPro automaticall disables all the menu bars. The only way to bring the menu back is by running the menu program again. The question is when?
It has to be fired after the show event?
Mmmm, what even fires after the show? Actviate .... No.
.
.
.
.
.
.
.
.
.
.
We used a...
LOCAL ARRAY la_temp
IF ANETRESOURCES(la_temp, "Network Name",1) > 0
*-- The array la_Temp will have the names
*-- of all the computers on that network
ENDIF
Satyen
It is great and you have use it on large data sets. Watch out for simple queries FoxPro rushmore tends to use the original table as the result set.
Ex:
SELECT * from sydtabl ORDER BY tablid WHERE tablid = "AP"
? dbf()
You will notice it returns the original table. To fix it use...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.