Hello all,
 
After deploying a new database to several users in Access 2007 Rutime, I discovered that the Zoombox Functionality does not work in runtime.
 
In the access program I have created a form with a Zoombox Button linked to an event procedure as follows:
 
Private Sub ZoomField_Click()
On Error GoTo Err_ZoomField_Click
 
Screen.PreviousControl.SetFocus
DoCmd.RunCommand acCmdZoomBox
 
Exit_ZoomField_Click:
Exit Sub
 
Err_ZoomField_Click:
MsgBox Err.Description
Resume Exit_ZoomField_Click
    
End Sub
 
This Zoombox feature works fine in the full version of Access 2007, but does not work in the runtime version.
 
Is there any workaround to this problem? I would greatly appreciate you help guys.
 
Thanks
 After deploying a new database to several users in Access 2007 Rutime, I discovered that the Zoombox Functionality does not work in runtime.
In the access program I have created a form with a Zoombox Button linked to an event procedure as follows:
Private Sub ZoomField_Click()
On Error GoTo Err_ZoomField_Click
Screen.PreviousControl.SetFocus
DoCmd.RunCommand acCmdZoomBox
Exit_ZoomField_Click:
Exit Sub
Err_ZoomField_Click:
MsgBox Err.Description
Resume Exit_ZoomField_Click
End Sub
This Zoombox feature works fine in the full version of Access 2007, but does not work in the runtime version.
Is there any workaround to this problem? I would greatly appreciate you help guys.
Thanks