Reputation: 1139
I am trying to build a pop up zoom in form which will zoom in on a report embedded in a tab control embedded in a form. My zoom in box control is called txtzoom. The code i thought would work looks like the following
Private Sub Form_Open(Cancel As Integer)
Me.txtZoom = Forms("frmContactsSwitchboard").Report("rptContactPage05")!Note
End Sub
My plan is to be able to zoom into a field, and be able to edit it.. I am not sure if this is possible.
I would appreciate if someone who is familiar with this issue could please let me know what i can do to resolve it.. Cheers, A
Upvotes: 0
Views: 355
Reputation: 2059
Do you know about Access's built-in (but flawed) Zoom window? Try pressing Shift-F2 on a table, query, form, or report (in report view). Unfortunately, the font defaults to Tahoma 8pt and resets each time you close Access. So, the first Shift-F2 doesn't help much, but once you've changed the font size, the rest of the functionality is there. You may want to just give the user a label that suggests using Shift-F2 to zoom.
Upvotes: 2