Problem: Getting error "Internal error"
1: When applying a setGenFilter() after a setRange() on a tcursor and the table is not included in the datamodel of the form.
Versions: P7 W95/NT
More information:
see fixed bugs PX0067
2: When running a standard script that loads each of my forms, one at a time, re-saves them, delivers them and then closes them
again.
Date: 24 September 1997
Versions: P8
Description:
In the process of converting my application from Paradox 7 to 8 I thought I would run a standard script that loads each of my forms, one at a time,
re-saves them, delivers them and then closes them again. Only one form is loaded at a time and this script has worked fine since version 5. After 10
forms have been compiled, PDX8 reports either an 'Internal Error', 'Disk Error' or 'Out of File Handles'. You can exit Paradox but you can't save
any files that may be open.
My comments: I just ran such a script, found in the Paradox 7 Samples directory, update.ssl and add deliver() to the code. My working
directory contained 134 forms, 9 reports, 2 scripts, and 1 library. No internal errors.
Comments from: Keith Maguire - COREL
I have checked and it does seem to be an issue in 32bit versions of Paradox. Will forward through appropriate channels.
3: When trying to set the gridvalue property of a form via ObjectPal.
Versions: P7 W95/NT
Description:
My code reads:
MyForm.gridvalue=1440
I then tried
myForm.SetProtoProperty(linetool,"gridvalue",1440)
which did not generate an error message, but did not have an effect on the grid setting for the line tool.
Solution by: Bertil Isberg
GridValue is of type point.
Try this
f.attach()
f.GridValue=point(2000, 2000)
It works in P7W95
4: When setting a listobject's datasource property in the action event for the listobject , eg when catching the EditDropDownList.
Date: May 2000
Versions: P7 W95/NT
Solution by: Bertil Isberg
Use arrive event instead. Setting datasource when EditDropDownList happens is not a good idea. EditDropDownList is triggered when a value is
clicked in the list, not only when the down-arrow is clicked.