Hello Experts
Im starting to feel like sql select is evil...
I used to be able to edit records in my grid by double clicking on the record.
In the dblclick event i would have
but now that I load the form with sql select and search with select I find so much more has changed. I get an error message saying "variable 'CUSTOMERID' not found" please help
Im starting to feel like sql select is evil...
I used to be able to edit records in my grid by double clicking on the record.
In the dblclick event i would have
Code:
LOCAL oform3 as Form
DO FORM frmbookapp NAME oform3 LINKED WITH appointment.appointid, customerid NOSHOW
oform3.AutoCenter = .t.
oform3.Show(1) &&show modally
this.Refresh()
but now that I load the form with sql select and search with select I find so much more has changed. I get an error message saying "variable 'CUSTOMERID' not found" please help