I have the same issue. Despite the report setting, it prints portrait. But, mind you, only the first time in the session. Bizzare I know.
It will revert to landscape for the rest of the session.
This happens in 2000 and XP.
Any clues?
I need to upgrade a MS Access 97 MDE file to MS Access XP.
My client has lost the MDB file though.
Is there anyway to recover the MDB or is it gone for good?
I know passwords are recoverable so I'm hoping MDB's can be too.
Fixed it. Problem solved.
I had to add a reference to the Windows Hosting Script Object (in Access 97).
Once I did that, the WHS has a nifty object that has what I need.
cmdline = "c:\myexe.exe"
Dim objShell As New WshShell
Dim z As Long
z =...
Monitoring a DOS Shell - Resolved
I'm using MS Access 97 and shelling to a DOS window.
When the window autocloses, I need to proceed with my code.
Its the age old problem of halting code execution while waiting for an external process to complete.
cmdline = "c:\myexe.exe"...