Here's another Top 1,000 stupid Question:
i have a combobox which has 6 colums on one of the colums it has a yes/no cell from table Inventroy. How can I make the ComboBox change the value of the checkbox based on the data on table inventory??
I have the following code
Private Sub carmodel_AfterUpdate()
Me.carlice = Me.carmodel.Column(6)
Me.carnum = Me.carmodel.Column(3)
Me.carcolor = Me.carmodel.Column(2)
Me.mileout = Me.carmodel.Column(7)
Me.checkrented = Me.carmodel.Column(5)
End Sub
But this doent change :-( see the Form is made up of Table Client, which is to get all the client information & the current car that the client wants to rent. The Car Selection part, is where the combobox is at, which is connected to the Inventory Table, & the Check box is what changes the value yes/no.
i have a combobox which has 6 colums on one of the colums it has a yes/no cell from table Inventroy. How can I make the ComboBox change the value of the checkbox based on the data on table inventory??
I have the following code
Private Sub carmodel_AfterUpdate()
Me.carlice = Me.carmodel.Column(6)
Me.carnum = Me.carmodel.Column(3)
Me.carcolor = Me.carmodel.Column(2)
Me.mileout = Me.carmodel.Column(7)
Me.checkrented = Me.carmodel.Column(5)
End Sub
But this doent change :-( see the Form is made up of Table Client, which is to get all the client information & the current car that the client wants to rent. The Car Selection part, is where the combobox is at, which is connected to the Inventory Table, & the Check box is what changes the value yes/no.