CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Threaded View

  1. #1
    Join Date
    Nov 2005
    Posts
    95

    determine which option (radio) button is active

    Here is a function I made up (with tips from Hannesthegreat and Wof)..might come in handy....
    Code:
    'Determines & returns which option button in an array is presently active
    'Returns -1 when none are active (such as at initialization)
    'example:  text3.text=str(WhichOptionActive(optRadioButtonBank1))
    '
    Public Function WhichOptActive(CtrlArr As Variant) As Integer
    Dim Cntrl As Control
    WhichOptActive = -1  'default, if none active
    For Each Cntrl In CtrlArr
      If Cntrl.Value = True Then       'look for active option button
       WhichOptActive = Cntrl.Index
       Exit Function  'if found, get out now
      End If
    Next Cntrl
    End Function
    Last edited by WizBang; May 7th, 2009 at 07:58 AM. Reason: Added [code] tags

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured