Bring Access Window On Top When Opened From Excel

AxxieD

I have an Excel 2010 spreadsheet that brings in data from an Access 2010 database. The user has to login to be able to access the records. When Access opens, the icon in the taskbar flashes, but stays behind whatever else is on the screen. What I want is for Access to become the active window so that there's no chance of the user missing it.

What would be the best way to go about doing this?

Soulfire

I have used AppActivate before, but I don't necessarily know the pros and cons.

Sub ActivateAccess()
  On Error Resume Next
  AppActivate "Microsoft Access"
  On Error GoTo 0
End Sub

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Autofilter a protected excel sheet opened from access

From Dev

Autofilter a protected excel sheet opened from access

From Dev

force to bring excel window to the front?

From Dev

force to bring excel window to the front?

From Dev

On click, bring element to the top of the window (with offset)

From Dev

Window opener is null when opened from webview in chrome app

From Dev

Remove protected view from Excel sheet opened programmatically in Access

From Dev

Bringing an Excel window to foreground from Access

From Dev

Set PowerPoint presentation when already opened (From Excel)

From Dev

Exported excel file from datagridview shows error when opened VB

From Dev

Cognos 10.2.2: Excel Report Redirects To Portlet When Opened from Portlet

From Dev

android countryPicker from github, bring countries to top

From Dev

Bring Window To Foreground When MainWindowHandle Is 0

From Dev

Opened multiple popup using window.open().How to make all popup stay at top and also access parent page

From Dev

Access Pop Up Form Background Garbled/Distorted When Opened via OpenForm Macro Action with Window Mode Normal

From Dev

TideSDK bring window to top level on click of system notification

From Dev

div fade-in when window is scrolled a certain distance from the top

From Dev

Other window comes to front when bring window to front

From Dev

Force Window to have Focus When Opened

From Dev

Is there an event that is triggered when a child window is opened?

From Dev

Chrome to read when window is focused,aka opened

From Dev

Excel vba userform crashes excel when opened

From Dev

Android window doesn't resize/pan when softinput opened from WebView

From Dev

Android window doesn't resize/pan when softinput opened from WebView

From Dev

How to Get the Meeting Details from MS Outlook when the meeting window is Opened using Apple script

From Dev

How to get the windows applications original size when it is first opened from window handle?

From Dev

How to bring in string from left of numbers in Excel

From Dev

Remove a node from the newly opened window jquery

From Dev

Default location and window size when a new window is opened?

Related Related

  1. 1

    Autofilter a protected excel sheet opened from access

  2. 2

    Autofilter a protected excel sheet opened from access

  3. 3

    force to bring excel window to the front?

  4. 4

    force to bring excel window to the front?

  5. 5

    On click, bring element to the top of the window (with offset)

  6. 6

    Window opener is null when opened from webview in chrome app

  7. 7

    Remove protected view from Excel sheet opened programmatically in Access

  8. 8

    Bringing an Excel window to foreground from Access

  9. 9

    Set PowerPoint presentation when already opened (From Excel)

  10. 10

    Exported excel file from datagridview shows error when opened VB

  11. 11

    Cognos 10.2.2: Excel Report Redirects To Portlet When Opened from Portlet

  12. 12

    android countryPicker from github, bring countries to top

  13. 13

    Bring Window To Foreground When MainWindowHandle Is 0

  14. 14

    Opened multiple popup using window.open().How to make all popup stay at top and also access parent page

  15. 15

    Access Pop Up Form Background Garbled/Distorted When Opened via OpenForm Macro Action with Window Mode Normal

  16. 16

    TideSDK bring window to top level on click of system notification

  17. 17

    div fade-in when window is scrolled a certain distance from the top

  18. 18

    Other window comes to front when bring window to front

  19. 19

    Force Window to have Focus When Opened

  20. 20

    Is there an event that is triggered when a child window is opened?

  21. 21

    Chrome to read when window is focused,aka opened

  22. 22

    Excel vba userform crashes excel when opened

  23. 23

    Android window doesn't resize/pan when softinput opened from WebView

  24. 24

    Android window doesn't resize/pan when softinput opened from WebView

  25. 25

    How to Get the Meeting Details from MS Outlook when the meeting window is Opened using Apple script

  26. 26

    How to get the windows applications original size when it is first opened from window handle?

  27. 27

    How to bring in string from left of numbers in Excel

  28. 28

    Remove a node from the newly opened window jquery

  29. 29

    Default location and window size when a new window is opened?

HotTag

Archive