F
Fabrice
Hello everybody,
I work with Access 2002. I have a long form and when I insert a text in the
field "np", the event afterUpdate of this field dropdown a combobox named
"localite". The code is the following.
Private Sub np_AfterUpdate()
With Me.localite
.Requery
.SetFocus
.Dropdown
End With
End Sub
That works well. The problem is the following :
If the combobox "localite" is in the middle of the screen, this event make
jump the screen in order to place the combobox "localite" in the bottom of
the screen (it is a long form). Is it possible to avoid this jump and to
maintain the combobox in the middle of the screen ?
I hope that my explanations are understanding, if not do not hesitate to ask
me information.
Thank you in advance for your help
Fabrice
I work with Access 2002. I have a long form and when I insert a text in the
field "np", the event afterUpdate of this field dropdown a combobox named
"localite". The code is the following.
Private Sub np_AfterUpdate()
With Me.localite
.Requery
.SetFocus
.Dropdown
End With
End Sub
That works well. The problem is the following :
If the combobox "localite" is in the middle of the screen, this event make
jump the screen in order to place the combobox "localite" in the bottom of
the screen (it is a long form). Is it possible to avoid this jump and to
maintain the combobox in the middle of the screen ?
I hope that my explanations are understanding, if not do not hesitate to ask
me information.
Thank you in advance for your help
Fabrice