LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 7
Default How do I set a pop up window to focus?

I have an Excel spreadsheet that queries an access database. Part of the
macro I have created (with the help of a co-worker) has the database import
information from a different spreadsheet. When this happens it opens a prompt
that asks for a date. How do I make it so that pop up window is in focus?
Below is the code I believe is relevant to the problem.


Sub Refresh_Access()
Dim LOC As String
LOC = "\\kftwmfs02\Departments\Dispatch\Shared_Files\Cap atalized
Work\Capitalized Work.mdb"
Call Module1.Create_Shell_Access(LOC)
End Sub


Module1:

Public Function Create_Shell_Access(ByVal Location As String)
Dim accs As New Access.Application
Set accs = CreateObject("Access.Application")
accs.Visible = False
accs.OpenCurrentDatabase Location
'Set accs = Nothing
Call Module2.Refresh
End Function




Module2:

Sub Refresh()
'
' Refresh Macro
'
' Keyboard Shortcut: Ctrl+r
'
Sheets("Capitalized Work By Area").Select
Range("A4").Select
Selection.ListObject.QueryTable.Refresh BackgroundQuery:=False
Range("A6").Select
Selection.ListObject.QueryTable.Refresh BackgroundQuery:=False
Range("A8").Select
Selection.ListObject.QueryTable.Refresh BackgroundQuery:=False
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
how to save a desired window size but hv window comeup fullsz by d smjm1982 Excel Discussion (Misc queries) 1 February 15th 08 11:10 AM
View cell contents as a pop-up window (similar to comments window) Oldersox Excel Worksheet Functions 1 February 6th 08 07:09 AM
Docking Project Explorer, Properties window and Code window in VBE jayray Setting up and Configuration of Excel 2 March 27th 07 04:42 PM
The window opens in a smaller window not full sized window. Rachael Excel Discussion (Misc queries) 0 November 7th 06 09:04 PM
In Excel - how to delete new window created from window on tool ba Doug Excel Worksheet Functions 1 April 20th 06 09:22 PM


All times are GMT +1. The time now is 01:08 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"