I have problem with option button. Every time, I run, the option1 is seemling tick.I don't have a code at form load.How tu untick it?
If Option1.Value = True Then
Form2.Show
Unload Me
ElseIf Option2.Value = True Then
Form3.Show
Unload Me
End If
Printable View
I have problem with option button. Every time, I run, the option1 is seemling tick.I don't have a code at form load.How tu untick it?
If Option1.Value = True Then
Form2.Show
Unload Me
ElseIf Option2.Value = True Then
Form3.Show
Unload Me
End If
Select the Option1. Press F4. And Set its value property to False
Or you can write code in your FormLoad eventto untick the option button when the form loadsvb Code:
Option1.Value = False