15e4c Zoom View in Access
Sign Up |  Live StatsLive Stats    Articles 37,345| Comments 177,358| Members 19,420, Newest Talia| Online 447
Home Contact
 (Forgotten?): 
    Sikhism
    For best SPN experience, use Firefox Internet Browser!


                                                                   Your Banner Here!    




Click Here to Register/Sign Up Daily Hukamnama Member Blogs Downloads Website Navigation Help Fonts Tags

Zoom View in Access

Our Donation Goal : Why Donate? : Donate Today! : Donate Anonymously (ਗੁਪਤ) : Our Family of Supporters
Goal this month: 500 USD, Received: 115 USD (23%)
Please Donate...
     
Related Topics...
Thread Thread Starter Forum Replies Last Post
How do I resolve screen corruption when running zoom text in offic proudmaryfm55@hottmail.com Information Technology 1 28-Jul-2006 08:40 AM
Using List View Control on Access Forms Ibrahim Dashti Information Technology 1 28-Jul-2006 08:34 AM
Zoom in Design Mode? Jim Information Technology 1 28-Jul-2006 08:17 AM
Re: Can I have an SQL view like in Access M.Siler Information Technology 1 28-Jul-2006 08:03 AM
How can I view Access OLE objects in Word/Excel? Steven T. Information Technology 1 10-Nov-2005 21:08 PM


Tags
zoom, view, access
Reply Post New Topic In This Forum Stay Connected to Sikhism, Click Here to Register Now!
  #1 (permalink)  
Old 28-Jul-2006, 08:24 AM
Kimby@Ecology's Avatar Kimby@Ecology
Guest
 
Posts: n/a
   
   
Zoom View in Access

  Donate Today!   Email to Friend  Tell a Friend   Show Printable Version  Print   Contact sikhphilosophy.net Administraion for any Suggestions, Ideas, Feedback.  Feedback  

Register to Remove Advertisements
It would be very helpful to be able to change the zoom view in Access. For
example, I have a report designed to print perfectly on one page. However,
because I have a nice, new, large monitor, the screen entry for that report
only takes up about 2/3 of the available space on the screen.

It would be helpful if I could simply zoom in and make the display on the
screen larger without having to either (1) redesign my report, or (2) change
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/information-technology/11866-zoom-view-in-access.html
my monitor settings. Mimicking the way it works in Excel would be great.
Ctrl+Scroll Wheel on the mouse works fantastic. Thanks!

----------------
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11866
This post is a suggestion for Microsoft, and Microsoft responds to the
suggestions with the most votes. To vote for this suggestion, click the "I
Agree" button in the message pane. If you do not see the button, follow this
link to open the suggestion in the Microsoft Web-based Newsreader and then
click "I Agree" in the message pane.

http://www.microsoft.com/office/comm....public.access


Got anything to share on This Topic? Why not share your immediate thoughts/reaction with us! Login Now! or Sign Up Today! to share your views... Gurfateh!
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 28-Jul-2006, 08:24 AM
kabaka's Avatar kabaka
Guest
 
Posts: n/a
   
   
RE: Zoom View in Access

You can. Use either

1)Reports![YourReportName].ZoomControl = 125
or
2)DoCmd.RunCommand acCmdZoom100
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11866

right after you open your report in code. For example:

DoCmd.OpenReport "YourReportName", acViewPreview
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11866
DoCmd.RunCommand acCmdZoom100

Note that in 1) you can replace 125 with any number, but in 2) it must be
10,25,50,75,100,150 or 200



"Kimby@Ecology" wrote:

> It would be very helpful to be able to change the zoom view in Access. For
> example, I have a report designed to print perfectly on one page. However,
> because I have a nice, new, large monitor, the screen entry for that report
> only takes up about 2/3 of the available space on the screen.
>
> It would be helpful if I could simply zoom in and make the display on the
> screen larger without having to either (1) redesign my report, or (2) change
> my monitor settings. Mimicking the way it works in Excel would be great.
> Ctrl+Scroll Wheel on the mouse works fantastic. Thanks!
>
> ----------------
> This post is a suggestion for Microsoft, and Microsoft responds to the
> suggestions with the most votes. To vote for this suggestion, click the "I
> Agree" button in the message pane. If you do not see the button, follow this
> link to open the suggestion in the Microsoft Web-based Newsreader and then
> click "I Agree" in the message pane.
>
> http://www.microsoft.com/office/comm....public.access

Reply With Quote
  #3 (permalink)  
Old 28-Jul-2006, 08:24 AM
Arvin Meyer [MVP]'s Avatar Arvin Meyer [MVP]
Guest
 
Posts: n/a
   
   
Re: Zoom View in Access

You might try a bit of code like this called from the report's Open event:

Sub Report_Open(Cancel As Integer)
DoCmd.OpenReport "rptReportName", acViewPreview
DoCmd.Maximize
DoCmd.RunCommand acCmdFitToWindow
End Sub
--
Arvin Meyer, MCP, MVP
Microsoft Access
Free Access downloads
http://www.datastrat.com
http://www.mvps.org/access

"Kimby@Ecology" wrote in message
news:3EB038C7-17D3-4A89-91D4-74FDBC57CC38@microsoft.com...
> It would be very helpful to be able to change the zoom view in Access.
> For
> example, I have a report designed to print perfectly on one page.
> However,
> because I have a nice, new, large monitor, the screen entry for that
> report
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11866
> only takes up about 2/3 of the available space on the screen.
>
> It would be helpful if I could simply zoom in and make the display on the
> screen larger without having to either (1) redesign my report, or (2)
> change
> my monitor settings. Mimicking the way it works in Excel would be great.
> Ctrl+Scroll Wheel on the mouse works fantastic. Thanks!
>
> ----------------
> This post is a suggestion for Microsoft, and Microsoft responds to the
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11866
> suggestions with the most votes. To vote for this suggestion, click the "I
> Agree" button in the message pane. If you do not see the button, follow
> this
> link to open the suggestion in the Microsoft Web-based Newsreader and then
> click "I Agree" in the message pane.
>
> http://www.microsoft.com/office/comm....public.access



Reply With Quote
  #4 (permalink)  
Old 28-Jul-2006, 08:25 AM
Kimby@Ecology's Avatar Kimby@Ecology
Guest
 
Posts: n/a
   
   
Re: Zoom View in Access

  Donate Today!  
Thanks for the great suggestions. What I meant to suggest is a method of
changing the zoom level as needed or desired without resorting to code.
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11866
Since every other program in Office uses the Ctrl+Scroll feature, it seems
Access should as well. That way, (regardless of what monitor I'm using or
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11866
whether I'm wearing my glasses at the moment) I can quickly and easily adjust
the zoom to meet my needs.

Thanks!

Kimby
Reply With Quote
   Click Here to Donate Now!

Support Us!
Become a Promoter!
Gurfateh ji, you can become a SPN Promoter by Donating as little as $10 each month. With limited resources & high operational costs, your donations make it possible for us to deliver a quality website and spread the teachings of the Sri Guru Granth Sahib Ji, to serve & uplift humanity. Every contribution counts. Donate Generously. Gurfateh!
ReplyPost New Topic In This Forum Stay Connected to Sikhism, Click Here to Register Now!

Bookmarks


(View-All Members who have read this thread : 0
There are no names to display.

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Tools Search
Search:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On
Trackbacks are On
Pingbacks are On
Refbacks are On

» Active Discussions
Woolwich Killing: The...
Today 07:49 AM
15 Replies, 171 Views
How does Sikhi help you...
Today 07:20 AM
43 Replies, 1,103 Views
US Congress panel passes...
Today 04:22 AM
0 Replies, 32 Views
Harmeet Kaur Took the...
Today 03:40 AM
0 Replies, 43 Views
Is Science a Religion?
Today 03:00 AM
10 Replies, 1,938 Views
Rozana Reports (ਪੰਜਾਬੀ...
Today 01:43 AM
319 Replies, 7,684 Views
Sikh Spokesman (ਪੰਜਾਬੀ...
Today 00:36 AM
182 Replies, 4,588 Views
Rochester Gurdwara...
Today 00:24 AM
1 Replies, 52 Views
Panjabi Alphabet Resource
Yesterday 23:15 PM
12 Replies, 6,558 Views
Transgenderism ... Right...
Yesterday 22:55 PM
30 Replies, 1,364 Views
Biography of a Scholar:...
Yesterday 22:53 PM
1 Replies, 61 Views
Dusting The Web
Yesterday 22:25 PM
0 Replies, 36 Views
How Pure the Tongue? New...
Yesterday 21:29 PM
0 Replies, 53 Views
Stockholm riots throw...
Yesterday 21:14 PM
1 Replies, 38 Views
Biography of a Scholar:...
Yesterday 18:59 PM
2 Replies, 168 Views
» Books You Should Read...
Powered by vBadvanced CMPS v3.2.3
All times are GMT +6.5. The time now is 09:29 AM.
Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2013, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2 Copyright © 2004-12, All Rights Reserved. Sikh Philosophy Network


Page generated in 0.47381 seconds with 32 queries
0