[RESOLVED] Controlled Input
Hi
I have a frame on a form with 6 separate inputs which by design items can be selected in any order.
They are 2 Textbox's for a cash value, 2 options select one or the other a label with a title and a textbox for a number which is not visible after input.
Google did not have the answer, this is my code but it fails can you help please.
Select Case .fmePP.Visible = True
Case True
If .txtSP5.Text <> "" And .txtSP6.Text <> "" And _
.lblPP.Caption <> "" And .txtMonthPP.Visible = True And _
.optWklyPP.Value = True Or .optMthlyPP.Value = True Then
ppOk = True
xVisible = xVisible + 1
Else
MsgBox msg, 48 + 0, iTitle
End If
End Select