I am working on a project and i would like to click a list box then the values get filled in a combobox. It works well with TextBox but it doesnt work with combobox. Below is my code combo1 is a combobox field
Private Sub listboxmachine_Click()
With listboxmachine
combo1.Value = .Column(0)
Litres.Value = CLng(.Column(1))
End With
End Sub
Thank you