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!

Delivery Form Design 1

Status
Not open for further replies.

mccuaig

IS-IT--Management
Sep 25, 2001
1
CA
I have an old Form which was created probably Paradox 5 (so long ago I can't remember). In any event I had to make a change to a table and wanted to "deliver" the form. I receive an error - unknown identifer for "InputField.Value". Does anyone know what the replacement for this would be?
A short sample of my form is below. hopefully this is enough for someone to help me.
Thanks

method pushButton(var eventInfo Event)

Var
FileNo String
QryStmt Query
TcWork, TcAnswer TCursor
CorpRep Report
RepInfo ReportPrintInfo
Endvar

If InputField.Value = "" then
Beep()
MsgStop("Error","No file number entered")
Return
endif

 
I have a guess.

Maybe what happened is that when you changed the table and delivered the form, the field objects on the form were updated. Now, IF you had originally renamed one of those field objects on the form to InputField using the properties, when the fields updated after the change to the table it might have reverted to the actual field name in the table, rather than the one you renamed it to. Click on the field you think is supposed to be InputField and look at the lower right of the status bar. The name is probably wrong, and if so just rename it again to InputField and recompile.


Mac :)

"There are only 10 kinds of people in this world... those who understand binary and those who don't"

langley_mckelvy@cd4.co.harris.tx.us
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top