Howdy, CD
Saw you making smoke on the cover of The Cowby Chronicle.
The only way to pause code is to open a form in dialog mode
Docmd.OpenForm "SomeForm", , , , , acDialog
It will pause until the form closes. You may need to consider using this
approach and passing the value back to the other form when the dialog form
closes.

Signature
Dave Hargis, Microsoft Access MVP
> I'm building data for a report and after the data is built I prompt the user
> as to how they want the data to be displayed, they can display by individual
[quoted text clipped - 4 lines]
> select the individual and I will have the emp# to lookup by. Does anybody
> have an answer. Thanks for any help.
CD Tom - 12 May 2008 22:14 GMT
Oh how do you pass that information back?
> Howdy, CD
> Saw you making smoke on the cover of The Cowby Chronicle.
[quoted text clipped - 14 lines]
> > select the individual and I will have the emp# to lookup by. Does anybody
> > have an answer. Thanks for any help.
CD Tom - 12 May 2008 22:14 GMT
Quite a surprise, I helped them do the scoring. Are you still active in
Cowboy action?
I thought that was going to be the only way, isn't there a pause command
that I could put after the dialog box and then in the after update make it
continue?
> Howdy, CD
> Saw you making smoke on the cover of The Cowby Chronicle.
[quoted text clipped - 14 lines]
> > select the individual and I will have the emp# to lookup by. Does anybody
> > have an answer. Thanks for any help.
CD Tom - 12 May 2008 22:21 GMT
Is there anyway to position the dialog form in a particular spot on the screen?
> Howdy, CD
> Saw you making smoke on the cover of The Cowby Chronicle.
[quoted text clipped - 14 lines]
> > select the individual and I will have the emp# to lookup by. Does anybody
> > have an answer. Thanks for any help.
Klatuu - 12 May 2008 23:16 GMT
Yep, I was out shooting Saturday.
You can pass the value back to the calling form by pushing the value to it.
I would use the dialog form's Unload event. Assume it has a combo on it and
you are passing it back to a combo on the calling form:
Forms!CallingFormName!cboSomething = Me.MyCombo
As to positioning, you could use the MoveSize method in the dialog form's
Load event.

Signature
Dave Hargis, Microsoft Access MVP
> Is there anyway to position the dialog form in a particular spot on the screen?
>
[quoted text clipped - 16 lines]
> > > select the individual and I will have the emp# to lookup by. Does anybody
> > > have an answer. Thanks for any help.