View Single Post
  #14  
Old 24-12-2022, 08:27
DelphiBuilder's Avatar
DelphiBuilder DelphiBuilder is offline
Registered User
 
Join Date: Dec 2022
Location: From Nowhere
Posts: 25
Thanks: 6
Thanked 41 Times in 19 Posts
DelphiBuilder is on a distinguished road
Post TCheckListBoxCreate v2

TCheckListBoxCreate v2

Code:
  • CheckListBoxAddCheckBox(FCheckListBox, 'AddCheckBox', '', 0, False, False, False, True, nil);
  • CheckListBoxAddGroup(FCheckListBox, 'AddGroup', '', 4, nil);
  • CheckListBoxAddRadioButton(FCheckListBox, 'AddRadioButton (1)', '', 1, False, True, nil);
  • CheckListBoxAddRadioButton(FCheckListBox, 'AddRadioButton (2)', '', 1, False, True, nil);
  • CheckListBoxAddCheckBoxEx(FCheckListBox, 'AddCheckBoxEx', '', 0, False, False, False, True, nil, True);
  • CheckListBoxAddGroupEx(FCheckListBox, 'AddGroupEx', '', 4, nil, True);
  • CheckListBoxAddRadioButtonEx(FCheckListBox, 'AddRadioButtonEx (1)', '', 1, False, True, nil, True);
  • CheckListBoxAddRadioButtonEx(FCheckListBox, 'AddRadioButtonEx (2)', '', 1, False, True, nil, True);
  • CheckListBoxCheckItem(FCheckListBox, 1, coUncheck);
  • CheckListBoxCheckItem(FCheckListBox, 3, coCheck);
  • CheckListBoxCheckItem(FCheckListBox, 6, coCheckWithChildren);
Code:
  • CheckListBoxBtnFromBitmap(FCheckListBox, BtnImage.Bitmap);
  • CheckListBoxBtnFromFile(FCheckListBox,'BtnImage.bmp');
  • CheckListBoxBGFromBitmap(FCheckListBox, BGImage.Bitmap, CheckListBoxGetLeft(FCheckListBox)-20, CheckListBoxGetTop(FCheckListBox)-20);
  • CheckListBoxBGFromFile(FCheckListBox, 'BGImage.bmp', CheckListBoxGetLeft(FCheckListBox)-20, CheckListBoxGetTop(FCheckListBox)-20);
Attached Images
File Type: png CheckListBox Create v2.png (33.8 KB, 115 views)
Attached Files
File Type: 7z CheckListBox Create v2.7z (619.2 KB, 8 views)

Last edited by DelphiBuilder; 24-12-2022 at 13:19.
Reply With Quote