
Newbie needing help badly!! Please help
1) Under the RadioButton click event (double click on the radio button to
get to code window)
use this code:
Frame1.enable
command1.enable
2) when the command button is clicked use this code:
If MsgBox("Are you sure you want to exit", vbYesNo, "Exit?") = vbYes Then
End
End If
Hope this helps, Happy learning! L.B.
Quote:
> I am new to the world of vb. and trying
> to teach myself and current ly have two
> problems.
> 1) Trying to make radio button in frame
> enable another frame and a command
> button?
> 2) Trying to command button exit to ask
> "are you sure?" yes no
> here what i have got.
> dim reply as integer
> reply = msgbox "are you
> sure?",vbyesno
> if reply = vbyes then
> unload.me
> endif
> Again thank you in advance for your help
> and advise.
> Dallas