Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

CheckListBox component help

Status
Not open for further replies.

XNOR

Programmer
Nov 15, 2001
17
US
How do i use this component?
Lets say i have multiple Items (that would be the case anyway right ;))
How do i check to see if one is Checked == true

ie:
if(CheckListBox1->Item(1) == true)
do something;

The Borland help files dont explain how to check for and individually checked item.

PLEASE HELP!

wil.
 
Sheesh, it seems that every time i come by here for help, i answer my own questions.
The answer:

if(CheckListBox1->Checked == true)
do something;

where i = a number item in the list of Strings.

The reason im so blind and missed it is because in the pointer-pop-up help box, it states nothing of the addition of a string involved with Checked.
 
Glad we could help! LOL James P. Cottingham

I am the Unknown lead by the Unknowing.
I have done so much with so little
for so long that I am now qualified
to do anything with nothing.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top