![]() |
|
|||||||
| embarcadero.public.delphiphp.deployment This group is for discussing deployment of applications with Delphi for PHP. |
![]() |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
It's a binary string array. Use something like:
TO CHECK OR UNCHECK ITEMS: CheckListBox->checked = "010101"; or so. This will check the items # 2,4,6 and uncheck items #1,3,5 TO GET THE CHECKED OR UNCHECKED ITEMS: If ($this->CheckListBox1->Checked[0]== 1) //If the 1st item is checked.... If ($this->CheckListBox1->Checked[3]!= 1) //if the 4th is not checked ... best of luck :) |
|
|||
|
Quote:
|
|
|||
|
There is an example in this tutorial:
Newbies tutorial: How to do things in Javascript an how to do it in PHP with D4PHP |