hyperlink in form (1 Viewer)

Siegfried

Registered User.
Local time
Today, 16:54
Joined
Sep 11, 2014
Messages
105
hi everyone,

I have a hyperlink on my main form (frmMainMenu) which, onclick opens another form (frmSlowSteaming).
When I close that form I return to the main form but need to click the refresh all button in the home tab to be able to use the hyperlink again.
Can I reffresh this action someow tru VBA or Macro?

Thanks.
 

arnelgp

..forever waiting... waiting for jellybean!
Local time
Today, 22:54
Joined
May 7, 2009
Messages
19,233
on OnClose event of your form frmSlowSteaming:

Private Sub Form_Close()
Forms!frmMainMenu.Requery
 

Siegfried

Registered User.
Local time
Today, 16:54
Joined
Sep 11, 2014
Messages
105
dear arnelgp,

Thanks. When I open the form and place the cursor over the hyperlink the first time it shows a pointing finger. Once I click on the link and open the form behind the link I need to refesh the form to get this pointing finger back. I'm looking for a way to get this pointing finger to show even after having selected the hyperlink the first time. This so users don't get confused, am trying to build an enduser type dbse.
 

arnelgp

..forever waiting... waiting for jellybean!
Local time
Today, 22:54
Joined
May 7, 2009
Messages
19,233
i, see. but i think you cannot do that because the main form loses focus (not the active form).
 

Users who are viewing this thread

Top Bottom