scouser
Registered User.
- Local time
- Today, 07:34
- Joined
- Nov 25, 2003
- Messages
- 767
Requery not working as I wish?
I am muddling through......
A user can input a New Order and select a Vehicle Make and Model.
However if they naviagte away from the record the Vehicle Model selected is lost?
I have attached a screen dump to better explain. Also I ahve tried numerous variations of On Current Event Requery. My latest offering being:
frmOrders is the Master Form
frmOrderDetails is the sub
The code below is on frmOrderDetails On Current Event
As with the others the above does not work!!
I simply want the user to be able to select a Vehicle Make and Model for each Order Input.
Can anybody complete the puzzle?
Thanks in advance,
Phil.
I am muddling through......
A user can input a New Order and select a Vehicle Make and Model.
However if they naviagte away from the record the Vehicle Model selected is lost?
I have attached a screen dump to better explain. Also I ahve tried numerous variations of On Current Event Requery. My latest offering being:
frmOrders is the Master Form
frmOrderDetails is the sub
The code below is on frmOrderDetails On Current Event
Code:
Private Sub Form_Current()
With Me
.cboModelID.Requery
.cboMakeList.Requery
End With
End Sub
As with the others the above does not work!!
I simply want the user to be able to select a Vehicle Make and Model for each Order Input.
Can anybody complete the puzzle?
Thanks in advance,
Phil.