Checkedvalue from control

H

Hans

How can I get the value from a Checkbox as control based on controls index
instead of controlname?

I need something like: Value=Controls(1).checked

Hans
 
M

Mythran

Hans said:
How can I get the value from a Checkbox as control based on controls index
instead of controlname?

I need something like: Value=Controls(1).checked

Hans

Umm, by casting the control to the valid type:

Value = DirectCast(Controls(1), CheckBox).Checked

You should also make sure the control is of type CheckBox before you perform
the cast, otherwise you may get an InvalidCastException.

HTH,
Mythran
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top