How to Open Access in Full screen
-
Within a VB6 form frmMain with a button that have the following click sub Dim Ace As Object Set Ace = CreateObject("Access.Application") Ace.OpenCurrentDatabase "c:\test.mdb", False Set Ace = Nothing unload frmMain The test.mdb opens perfectly but it is not full screen. How can i open it with full screen? Thanks in anticipation.
-
Within a VB6 form frmMain with a button that have the following click sub Dim Ace As Object Set Ace = CreateObject("Access.Application") Ace.OpenCurrentDatabase "c:\test.mdb", False Set Ace = Nothing unload frmMain The test.mdb opens perfectly but it is not full screen. How can i open it with full screen? Thanks in anticipation.
Try this ... ' Maximize the Access window: oAccess.RunCommand(Command:=Access.AcCommand.acCmdAppMaximize) I got it from the following article: How To Automate Microsoft Access From Visual Basic .NET http://support.microsoft.com/kb/317113[^]
-
Try this ... ' Maximize the Access window: oAccess.RunCommand(Command:=Access.AcCommand.acCmdAppMaximize) I got it from the following article: How To Automate Microsoft Access From Visual Basic .NET http://support.microsoft.com/kb/317113[^]