Rank: Newbie Groups: Member
Joined: 8/6/2010 Posts: 6
|
I have placed a checkbox inside the bigitem template of a slide control. Is there a way of accessing this checkbox's checked status under program control? If so, I would appreciate an example of how to do this in vb. Thank you
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
You would do something like
CType(Slide1.Items(item_index).FindControl(your_control_id), CheckBox)
to get your checkbox control.
Thanks!
|