Page 1 of 1

CheckBox... ReadOnly

Posted: 2013-02-11 09:06:38
by YoungBoy
I would like that some fields were read-only because I modify them using a script only.
I can with all ... but not with checkbox of the list movie.
How can I do?

Thank in advance.

Regards


for all the fields I do so

Code: Select all

 
          inherited EOriginalTitle: TEdit
          Width = 1339
          Font.Style = [fsBold]
          ParentFont = False
          ReadOnly = True //My Modify
          end

Posted: 2013-02-11 09:21:21
by antp
For the checkbox you could try Disabled=true

Posted: 2013-02-14 19:59:22
by YoungBoy
I solved (InvertClickCheckBoxes = True)
Thank