|
-
Oct 11th, 2001, 02:27 PM
#1
Thread Starter
New Member
Checking Option Buttons
Do you know if it is possible to loop through specific controls with
in a frame (instead of " in controls")
ie...
Private Sub TestLoop()
Dim aControl As Control
Dim fraFrame As Frame
Set fra = fraSelection
With fra
For Each aControl In fra
If TypeOf aControl Is optionbutton Then
MsgBox aControl.Text
End If
Next
End With
End Sub
In other words, I am trying to loop through specific options buttons inside as specific frame
besure that the user has selected at least one option (before updating recordset)
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|