R
rm
From form A I have the following code
DoCmd.OpenForm "B", acNormal, , , , , "rbshortname|" & Me.rbshortname
In form B the following
Me.Caption = Me.Caption & Space(1) & "-" & Space(1) & strRBSName &
Space(1) & Format(Now(), "mm/dd/yy HHMM")
Form B contains a combo box
If form b is set to Modal = yes then the user cannot change the value
in the combobox
If form b is set to Modal = no then the user can change the value
What am I missing?
DoCmd.OpenForm "B", acNormal, , , , , "rbshortname|" & Me.rbshortname
In form B the following
Me.Caption = Me.Caption & Space(1) & "-" & Space(1) & strRBSName &
Space(1) & Format(Now(), "mm/dd/yy HHMM")
Form B contains a combo box
If form b is set to Modal = yes then the user cannot change the value
in the combobox
If form b is set to Modal = no then the user can change the value
What am I missing?