View Single Post
  #11  
Old May 6th, 2005, 01:48 AM
external usenet poster
 
Posts: n/a
Default

Nikos,

I supplied some wrong information. I am not using a combo box I am
using a List Box and there in no "On Change" event.

Is there another option please?

Robin

On Thu, 05 May 2005 10:18:16 +0300, Nikos Yannacopoulos
wrote:


Now this may be associated with the fact that the form is a sub form
with members called from a combo box on the main form.

Yes, that's what makes the difference! We have been using the Form_Open
event for a subform, which obviously only opens once, so the event won't
fire next time.
In light of the new information, you need to use a different event to
trigger the action, and thst's the combo's On Change event; since you're
familiar with VBA code, put this in the combo's On Change event:

Me.YourSubformNameHere.SetFocus
DoCmd.GoToRecord , , acNewRec

This should do the trick.

Regards,
Nikos