Once upon a time there was a form, and on that form there lived a grid. 
It needs to be bound programmatically, so set up the columns at design 
time with no RecordSources or anything other than size and header 
captions, and all columns except one as readonly,. The one thaat is NOT 
readonly has the default textbox removed and a checkbox there instead. 
Then in code:

thisform.mygrid.recordsource = ""

select blah from blah into cursor _trans readwrite nofilter

select _trans
thisform.mygrid.recordsource = "_trans"

This leaves the one column that is not readonly bound to a logical field 
so it should be checked or unchecked in the grid. Fine, except that this 
column makes itself readonly for some reason and refuses to accept 
clicks. The underlying cursor is readwrite. The column controlsource is 
"table.field" form.

Any suggestions?



_______________________________________________
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.

Reply via email to