CheckBox... ReadOnly

If you need help on how to use the program
Post Reply
YoungBoy
Posts: 15
Joined: 2011-11-04 13:33:09

CheckBox... ReadOnly

Post 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
antp
Site Admin
Posts: 9639
Joined: 2002-05-30 10:13:07
Location: Brussels
Contact:

Post by antp »

For the checkbox you could try Disabled=true
YoungBoy
Posts: 15
Joined: 2011-11-04 13:33:09

Post by YoungBoy »

I solved (InvertClickCheckBoxes = True)
Thank
Post Reply