When I click on a command button in the main form, I want to move the focus to a combobox control in my subform. the focus shifts to the correct control and the combobox dropsdown
if I then choose one of the options of the control it also works correctly, but if instead I choose to type, the control wont accept any characters.
Any Thoughts ?
if I then choose one of the options of the control it also works correctly, but if instead I choose to type, the control wont accept any characters.
Code:
Me![frmDetalheMovFinanc].Form![ContaID].SetFocus
Me![frmDetalheMovFinanc].Form![ContaID].SelStart = 0
Me![frmDetalheMovFinanc].Form![ContaID].Dropdown
Any Thoughts ?