I am trying to run my ACCESS 2007 application in 2013. But, as expected , I have some problems.
The first thing is that the application opens with a form and that the form is to small in 2013 although there is a command on opening docmd.maximize.
'------------------------------------------------
' MAXIMISE FORM
' START PROCEDURE: PUBLIC VARIABLES
' BACKUP
'------------------------------------------------
Private Sub Form_Open(Cancel As Integer)
DoCmd.Maximize
StartProcedure
Also the module StartProcedure does not start. If I make breakpoint to debug in the VBA I discover that ACCESS2013 does not start the vba Module. (Which explainns the previous errors)
In my form I have a part of VBA on the on open event. But that seems the problem. it does not start.
What actions are required to convert from ACCESS 2007 into ACCESS 2013?
The first thing is that the application opens with a form and that the form is to small in 2013 although there is a command on opening docmd.maximize.
'------------------------------------------------
' MAXIMISE FORM
' START PROCEDURE: PUBLIC VARIABLES
' BACKUP
'------------------------------------------------
Private Sub Form_Open(Cancel As Integer)
DoCmd.Maximize
StartProcedure
Also the module StartProcedure does not start. If I make breakpoint to debug in the VBA I discover that ACCESS2013 does not start the vba Module. (Which explainns the previous errors)
In my form I have a part of VBA on the on open event. But that seems the problem. it does not start.
What actions are required to convert from ACCESS 2007 into ACCESS 2013?