B
Brian
Ok. I give in. Tried for hours, and have search the forum and google.
Is it possible to populate a dataform with the combobox1 value. I can pick
up the value, but can't get it in to the dataform.
The code uses the form from the dropdown Data\Form. The form works thanks to
advice from Dave Peterson, however what I want to achieve is when the user
make a selection in the Combobox, they click on the update command button
which brings up the the dataform and the form default to the record
containing the value.
Possibly something along these line:
ActiveSheet.ShowDataForm
If ComboBox1.Value > -1 Then
With Dataform
SendKeys "%c"
' SendKeys "{%}" + c
..Add (ComboBox1.Value)
SendKeys "%P"
' SendKeys "{%}" + P
End With
Else
End If
Any advice would be gratefully received.
Thanks,
Is it possible to populate a dataform with the combobox1 value. I can pick
up the value, but can't get it in to the dataform.
The code uses the form from the dropdown Data\Form. The form works thanks to
advice from Dave Peterson, however what I want to achieve is when the user
make a selection in the Combobox, they click on the update command button
which brings up the the dataform and the form default to the record
containing the value.
Possibly something along these line:
ActiveSheet.ShowDataForm
If ComboBox1.Value > -1 Then
With Dataform
SendKeys "%c"
' SendKeys "{%}" + c
..Add (ComboBox1.Value)
SendKeys "%P"
' SendKeys "{%}" + P
End With
Else
End If
Any advice would be gratefully received.
Thanks,