Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

forms 2

Status
Not open for further replies.

spindle

Technical User
Sep 14, 2001
16
CA
I tried opnening a form in Paradox 8 and got the following error message:
"an error was triggered in the 'home' method on an object of T cursor type"; "T cursor not opened". Does anyone know to what this is referring because I can't seem to find it in the Help section. Thank you.

dl
 
Hi there,
I am very new to programming and Paradox, so I dont know if this is very helpful, but I would check out the 'method' tab in the object explorer. There might be some wrong coding that triggers this error message.

Good luck, hopefully you can figure it out. Its so frustrating to be stuck with a problem!!
Margot
 
"tCursor not opened" usually is caused by a missing table, corrupt table, or missing or incorrect alias. Search the code for the ".home() " and see what table is supposed to be open, then verify that you can open it interactively. Also you add some code to the open statement.
instead of
tc.open("table.db")
use
if not tc.open("table.db") then
errorshow()
endif
This will give a better error message.

Richie
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top