Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how to save a desired window size but hv window comeup fullsz by d | Excel Discussion (Misc queries) | |||
View cell contents as a pop-up window (similar to comments window) | Excel Worksheet Functions | |||
Docking Project Explorer, Properties window and Code window in VBE | Setting up and Configuration of Excel | |||
The window opens in a smaller window not full sized window. | Excel Discussion (Misc queries) | |||
In Excel - how to delete new window created from window on tool ba | Excel Worksheet Functions |