RcdSt01SqlString = SELECT dmacs_item.im_division, dmacs_item.im_site, dmacs_item.im_item_nbr, dmacs_item.im_int_desc FROM dmacs_item;
when used with Set Rcdst01 = ThisDatabase.OpenRecordset(RcdSt01SqlString, dbOpenDynaset), it creates a dynamic record set
I've created 2 recordsets
Set Rcdst01 = ThisDatabase.OpenRecordset(RcdSt01SqlString, dbOpenDynaset)
Set RcdSt02 = ThisDatabase.OpenRecordset(RcdST02SqlString, dbOpenDynaset)
I would like to create a 3rd recordsset joining the first 2.
The resulting recordset would contain Fields 1,2,3 from...
This is what I use
In your macro use RunCode - Establish_Connection()
Public Function Establish_Connection()
Dim db As Database
Dim dbcurr As Database
Dim ds As Recordset
Set dbcurr = CurrentDb()
'Logs on to Your Database
Set db = OpenDatabase("", dbDriverComplete, False...
Defrag made no diff
These are databases that are started by scheduling software. They run a macro that runs reports, then closes db. These db's are all set to compact on close. The original db is still intact, but did not compress.
I'm running a mass update of all of our databases using the following -
Call Shell("""C:\Program Files\Microsoft Office\Office11\msaccess.exe"" """ & DatabaseName & """ /x """ & MacroName & """ ", 1)
works fine except for those databases with an autoexec macro or a startup form. is there an...
I'm running a mass update of all of our databases using the following -
Call Shell("""C:\Program Files\Microsoft Office\Office11\msaccess.exe"" """ & DatabaseName & """ /x """ & MacroName & """ ", 1)
works fine except for those databases with an autoexec macro or a startup form. is there an...
I'm running a mass update of all of our databases using the following -
Call Shell("""C:\Program Files\Microsoft Office\Office11\msaccess.exe"" """ & DatabaseName & """ /x """ & MacroName & """ ", 1)
works fine except for those databases with an autoexec macro or a startup form. is there an...
I'm using to following commmand line to print PDF files.
Shell "C:\Program Files\Adobe\Reader 8.0\Reader\AcroRd32.exe /p /f" & XsomeFile, vbHide
When printed they're only filling half of the page.
What is the command line setting to 'Fit to Page.
thx
RGB
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.