Link to home
Start Free TrialLog in
Avatar of mustish1
mustish1

asked on

Radio Buttons

Hi: Can any one please tell me how to i create group of three radio button with following options

1. IMPORT PAYMENT process
2. CLOSE AND RETURN process
3. DEMOGRAPHIC AND RECON

On the first option it ask first the name of two input files

Private Sub selectfiles()
Dim MyFile As String
With CommonDialog1
    .DialogTitle = "Select First File"
    .ShowOpen
    TextBox1.Text = .FileName
    .FileName = ""
    .DialogTitle = "Select Second File"
    .ShowOpen
    TextBox2.Text = .FileName
End With
End Sub

Thanks.
ASKER CERTIFIED SOLUTION
Avatar of manojantony
manojantony
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial