Hi Steve,

On Jun 21, 2006, at 9:15 AM, Steve Garman wrote:

        if rb.Value then

I'm getting a method or property does not exist error at this line.

Code    Window1.Action, line 00018      This method or property does not exist.
      if c.Value then

Here's my code....

  dim c as Control
  dim cName as string

  for i as Integer = 0 to ControlCount - 1

    c = Control(i)

    if c IsA GroupBox then

      MsgBox c.Name

      cName = c.Name

elseif c isa RadioButton and RadioButton(c).parent.name = cName then

      MsgBox c.Name + " Index: " + str(c.Index)

      if c.Value then

        MsgBox c.Caption + " is true!"

        else

        MsgBox c.Caption + "  is false!"

      end if

    end if

  next i

Regards,

Chuck
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>

Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>

Reply via email to