Hi Experts,
I have one form with grid name "grd", and in the "init" procedure/method, i have this code
The form is functioning properly. There was one time, I edited the form, to add one text box only.
After I compiled all the project, and run the application again, the strange error occurred with message: "Unknown member column1", and pointing to the line I show above. I am sure the column1 is still in the grid. Because I couldn't find the real problem, so I restore from the backup of .scx file, redo the modification again, and the form is running properly. Is is possible that the .scx file is corrupt so VFP misinterpret my form.
How do we know is the .scx file is corrupt? Is there a way to fixed them?
I experienced this on the second time (on the same form again) but with different strange behavior, and still couldn't find the real problem.
Thank you all
I have one form with grid name "grd", and in the "init" procedure/method, i have this code
Code:
WITH thisform.grd
.column1.enabled=.f.
.column2.enabled=.f.
.column3.enabled=.f.
endwith
The form is functioning properly. There was one time, I edited the form, to add one text box only.
After I compiled all the project, and run the application again, the strange error occurred with message: "Unknown member column1", and pointing to the line I show above. I am sure the column1 is still in the grid. Because I couldn't find the real problem, so I restore from the backup of .scx file, redo the modification again, and the form is running properly. Is is possible that the .scx file is corrupt so VFP misinterpret my form.
How do we know is the .scx file is corrupt? Is there a way to fixed them?
I experienced this on the second time (on the same form again) but with different strange behavior, and still couldn't find the real problem.
Thank you all