Extracting the Checked value programatically
How can I reference the value of some form control when it is NOT stored in the ".text" property ? I tried using the "Controls" collection, but the following code
SomeVariable = MyForm.Controls(Index).Text
is of no use (as it is with textboxes), and
SomeVariable = MyForm.Controls(Index).Checked
does not work, although in a checkbox that's where the value is stored (and not in .text property).
TIA
|