Form trigger for focus

philbullock1223

Registered User.
Local time
Today, 16:29
Joined
Dec 31, 2011
Messages
55
I have a pretty simple question....

I need to trigger a refresh on a form when I move the "focus" (i.e. click on one from and then another) from one form to another. I have tried putting Me.Refresh in the:

1. On Activate
2. On Got Focus
3. On Current

.....but these don't seem to work. I can't seem to get the trigger to flag.

Any help would be great.

Phil
 
What, exactly, are you expecting this 'Refresh' to accomplish? I ask because many people are not clear on its actual function, and should, in fact, be using Requery.

Me.Refresh is only intended to be used in a Multi-User Environment. It displays updated values for Controls in Records on the Form that have been entered/edited by other users, on existing Records.

'Refreshing' does not display New Records added by other users in a MUE, nor remove Deleted Records from the display.


Linq ;0)>
 
Last edited:
Missingling,

Interesting I never used Refresh. It's only useful in optimistic locking I presume.
 
All,

Thanks for the response. I truly appreciate it.

Regardless of the Me.Refresh or Me.Requery, I can't get the trigger to flag. I put Debug.Print "WORKED" inside the trigger events, but it was never flagged. Me.Refresh works great for me, because I have a manual button on the form that does the trick. I just want it to be automatic.

What trigger would I use to flag every time the form is "focused?" The triggers seem to have many stipulations that make them slightly different. I just need the form to flag when I make it active.

Phil
 
GotFocus only works, for a Form, if it has no Controls on it that can receive Focus. OnCurrent fires when moving from one Record to another, and hence OnActivate (of the Form being returned to) is usually the one to use when moving from one Form to another Form. Don't know why your test Debug.Print isn't working.

As to having a button to Refresh, the Default for this is 60 seconds, and can be changed by going to Options - Advanced, but that would have to be done on each machine running the app.

It would still help to know what, exactly, you want to happen, when doing your Refresh.

Linq ;0)>
 
Thanks. I'm also puzzled by the "on activate" event not firing.

I have two forms. The first form has a table subform. When the user double clicks on a record in the subform, another second form containing much more information pops up. Sometimes the user will change information on the pop-up second form and then press OK. I want the main form to then Me.Refresh (or Me.Requery) the table subform when the user focuses on the main form again.

Like I said, there is a button on the main for that has Me.Refresh code inside it. Works like a charm, but requires the user to press it. I would like it to be automatic.

I hope that explains the scenario better!

Phil
 
You could find that forms go through several events. The issue of moving between form A and form B will be more complex depending on what the controls look like.

As noted by missinglinq, there are limitations on some events.

Form OnOpen and OnLoad only fire once per launch of the form. OnClose and OnUnload, once per termination of the form. Switching back and forth won't do it for you.

Forms with no bound controls or underlying recordset never appear to execute an "OnCurrent" event.

Sub-forms don't do Activate/Deactivate events but DO execute Enter/Exit events. Also, Deactivate doesn't fire if you switch to a dialog box, popup form, or a window for a non-Access app.

Forms have Focus only if all controls on the form are disabled, so a Form GotFocus or LostFocus can only fire if all other controls cannot have focus.

Based on your description, your best bet is the Activate/Deactivate sequence (which actually does the Deactivate first, then the Activate) between two forms in the same application. Otherwise, I don't htink you have ANY events that Windows will pass to you.

You can read up on this topic in help topics on Programmability, which has a sub-heading on Events.
 

Users who are viewing this thread

Back
Top Bottom