-
WSSupport4John
AskWoody LoungerAugust 2, 2012 at 10:25 pm in reply to: What is the current versin of Microsoft Access 2010 #1343697Thanks for the info
Looks like this is the last Service Pack was Release Date: 6/27/2011
Service Pack 1 for Microsoft Access Database Engine 2010 (KB2460011) 64-bit EditionWhat should the version numbers be in a fully updated Access/Office?
Microsoft Access 2010 (14.0.????.????) SP1 MSO (14.0.????.????)
-
WSSupport4John
AskWoody LoungerDecember 6, 2011 at 1:13 pm in reply to: Outlook Email Body Font Size Problem on Send and Reply #1309453Thanks for the feedback
Mail Format Message Format, is HTML
System restore is not an option at this point
Anyone else with suggestions?
AFTER FURTHER REVIEW:
My Zoom some how got to 20%, put it back to 100%, all is OK, Microsoft Support had the following fix:
font is small when forwarding or replying to emails
http://answers.microsoft.com/en-us/office/forum/office_2007-outlook/font-is-small-when-forwarding-or-replying-to/4743ac29-2aa5-4f77-8737-1ee44b093565-
[*]The problem is rarely the font that is assigned for replies – its almost always the zoom setting. Hold Ctrl and scroll your mouse wheel to change it or look for the zoom button or command on the toolbar or ribbon. Screenshot for Outlook 2007/2010:http://slipstick.me/jing/zoom.png
[*] ETA: try the View menu in Outlook 2003 and older – Zoom should be at the bottom.
[*] -
WSSupport4John
AskWoody LoungerKim, Did you ever get this resolved?, if so what did you do to fix the font size?
I have same problem and I check my setting without success
Tools, Option, Mail Format, Signatures & Stationary, Personal Stationary, New & Replat Font is set at:
Font: +Body
Size: 10Any ideas how to correct body of email font size?
John
11397335
-
WSSupport4John
AskWoody LoungerI have Microsoft Access 2007 (12.0.6535.5005) SP2 MSO (12.0.6562.5003)
Does this mean Service Pack 1 mentioned below is installed?
Service Pack 1 also addressed the tedious delay each time you switch to Access 2007 after using another version. The reinstallation delay is now 20 seconds, rather than the 3 – 5 minute delay.
http://allenbrowne.com/access2007.html#Compatibility -
WSSupport4John
AskWoody LoungerOctober 11, 2011 at 7:59 am in reply to: Moving from A2k to Access 2007 (12.0.6562.5005) SP2 #1301481Perfect!
-
WSSupport4John
AskWoody LoungerOctober 9, 2011 at 11:11 am in reply to: Moving from A2k to Access 2007 (12.0.6562.5005) SP2 #130136810/09/11
Hi Mark
No problems at the moment. But have stumbled across the following two problems:
John
This worked in 2000-2003, but errored in 2007
Form, Event On Dbl Click =[lngIDJump]This worked in 2000-2003 & 2007
Form, Event On Dbl Click =lngIDJump()Function lngIDJump() ‘ this is fired when user double clicks in any field
Call lngID_DblClick(False)
End Function
———————————-
This worked in 2000-2003, but errored in 2007
Public Function OpenReportToLastToFirstPagePreview2k(strRpt As String)Dim strPages As String
Dim intLen As Integer
Dim n As IntegerDoCmd.OpenReport strRpt, acViewPreview
‘ Determine number of pages:
strPages = CStr(Reports(strRpt).Pages)
‘ Specify Zoom percentage:
DoCmd.RunCommand acCmdFitToWindow
DoCmd.SelectObject acReport, strRpt
‘ Use SendKeys to select Navigation box Page number:SendKeys “{F5}”, True ‘select navigation box page number
SendKeys strPages, True ‘last page number
SendKeys “{ENTER}”, True ‘go last page‘Pause 1 second, then go back to Page 1:
Sleep 1000
DoCmd.SelectObject acReport, strRptSendKeys “{F5}”, True
SendKeys “1”, True
SendKeys “{ENTER}”, True
SendKeys “%vzz” ‘ Alt v = Menu, z=Zoom, z = 100%End Function
This worked in 2007
Public Function OpenReportToLastToFirstPagePreview2007(strRpt As String)
Dim strPages As String
Dim intLen As Integer
Dim n As IntegerDoCmd.OpenReport strRpt, acViewPreview
‘ Determine number of pages:
strPages = CStr(Reports(strRpt).Pages) ‘ save last page number
‘ Specify Zoom percentage:
DoCmd.RunCommand acCmdFitToWindow
DoCmd.SelectObject acReport, strRpt‘Use SendKeys to select Navigation box Page number:
SendKeys “%{F5}”, True ‘select navigation box page number
SendKeys strPages, True ‘last page number
SendKeys “{ENTER}”, True ‘go last page‘Pause 2 second, then go back to Page 1:
Sleep 2000
DoCmd.SelectObject acReport, strRptSendKeys “%{F5}”, True ‘select navigation box page number
SendKeys “{BACKSPACE}”, True ’41 – clears 41 from box number
SendKeys “{BACKSPACE}”, True ‘821 – clears 821 from box number, if over 9 checks
SendKeys “{BACKSPACE}”, True ‘1251 – clears 1251 from box number if over 99 checks
SendKeys “%{F5}”, True ‘select navigation box page numberSendKeys “1”, True ‘set to page 1
SendKeys “{ENTER}”, True ‘go to page 1SendKeys “%vzz” ‘ Alt v = Menu, z=Zoom, z = 100%
End Function
-
WSSupport4John
AskWoody LoungerOctober 8, 2011 at 1:31 pm in reply to: DoCmd.OpenReport stDocName, acPreview Question, Access 2007 (12.0.6562.5005 #1301302Thanks for the help
When printing a 4 page report I was ending up with 41 in the box number
When printing a 82 page report I was ending up with 821 in the box number
When printing a 125 page report I was ending up with 1251 in the box numberSo I added the backapace commands to clear the box before sending the 1
Is there a better way to accomplish this?
Thanks, John
‘My final code that seems to work for the time being
Public Function OpenReportToLastToFirstPagePreview2007(strRpt As String)Dim strPages As String
Dim intLen As Integer
Dim n As IntegerDoCmd.OpenReport strRpt, acViewPreview
‘ Determine number of pages:
strPages = CStr(Reports(strRpt).Pages) ‘ save last page number
‘ Specify Zoom percentage:
DoCmd.RunCommand acCmdFitToWindow
DoCmd.SelectObject acReport, strRpt‘Use SendKeys to select Navigation box Page number:
SendKeys “%{F5}”, True ‘select navigation box page number
SendKeys strPages, True ‘last page number
SendKeys “{ENTER}”, True ‘go last page‘Pause 2 second, then go back to Page 1:
Sleep 2000
DoCmd.SelectObject acReport, strRptSendKeys “%{F5}”, True ‘select navigation box page number
SendKeys “{BACKSPACE}”, True ’41 – clears 41 from box number
SendKeys “{BACKSPACE}”, True ‘821 – clears 821 from box number, if over 9 checks
SendKeys “{BACKSPACE}”, True ‘1251 – clears 1251 from box number if over 99 checksSendKeys “%{F5}”, True ‘select navigation box page number
SendKeys “1”, True ‘set to page 1
SendKeys “{ENTER}”, True ‘go to page 1SendKeys “%vzz” ‘ Alt v = Menu, z=Zoom, z = 100%
End Function
-
WSSupport4John
AskWoody LoungerThanks for the information.
Following is the code I used, however was not ableto automatically in code on startup In Trust Center Tab, click MacroSettings button, Click Enable all macros
Has anybody been able to Enable all macros viacode in startup?
Thanks, John
mod_Set_Startup_Properties
IfGetVersion = “12.0” Then
Application.SetOption (“Auto Compact”), True
Application.SetOption “Default File Format”, 9 ‘=Access 2000, 10-2002, 11=2003, 12=2007
ChangeProperty “Overlapping Windows”, DB_Boolean, False ‘True
ChangeProperty “AllowFullMenus”, DB_Boolean, True ‘False
ChangeProperty “AllowShortcutMenus”, DB_Boolean, True
ChangeProperty”StartupShortcutMenuBar”, DB_Text, “(default)”
ChangeProperty “AllowBuiltinToolbars”, DB_Boolean, False ‘True
EndIf
-
WSSupport4John
AskWoody LoungerDon’t know where this came from.
This might help you decide.
John
-
WSSupport4John
AskWoody LoungerFebruary 13, 2009 at 4:41 pm in reply to: Access 2007 Opening FE.mdb the first time? (A2007 (12.0.6334.5000) SP1 Jet 4.0 SP-8) #1147123Additional information to supplement HansV response:
Is it safe to run Access 2003 and 2007 at the same time?
http://stackoverflow.com/questions/156694/…t-the-same-time%5B/url%5D
-
WSSupport4John
AskWoody LoungerFebruary 12, 2009 at 5:22 pm in reply to: Error: Invalid procedure call or argument (5)? (A2007 (12.0.6334.5000) SP1 Jet 4.0 SP-8 WinXp SP2) #1146943Is there another way of doing the equivalent of the following in code?
CommandBars(“Menu Bar”). _
Controls(“Tools”). _
Controls(“Database Utilities”). _
Controls(“Compact and Repair Database…”). _
AccDoDefaultActionTbanks, John
-
WSSupport4John
AskWoody LoungerFebruary 12, 2009 at 5:18 pm in reply to: Error: Invalid procedure call or argument (5)? (A2007 (12.0.6334.5000) SP1 Jet 4.0 SP-8 WinXp SP2) #1146940I’m using Custom Menu Bar and running 2007 in what they call legacy mode which eliminates Ribbons and uses the Menu Bar File, Edit, View, Tools… as
per http://office.microsoft.com/en-us/access/HA100365441033.aspx%5B/url%5D which I thank your for.
All the other menu option seem OK
John
-
WSSupport4John
AskWoody LoungerHi Tom
Thanks for the update, it was very helpful and confirms things that i have stumbled on.
When you get a chance could you review post 757756
Access 2007 Opening FE.mdb the first time? (A2007 (12.0.6334.5000) SP1 Jet 4.0 SP-8)
Specifically – When I open the Access 2000 FE.mdb the first time with Access 2007 it taks 7 minutes to open
If you have something to contribute please do it on post 757756
Thanks, John
-
WSSupport4John
AskWoody LoungerFebruary 12, 2009 at 3:30 pm in reply to: Access 2007 Opening FE.mdb the first time? (A2007 (12.0.6334.5000) SP1 Jet 4.0 SP-8) #1146922That make sense
In my case the the compile is not automatic, I have to manually compile after opening in a2k7, Is this normal?
Thanks for you help,
John
-
WSSupport4John
AskWoody LoungerFebruary 12, 2009 at 2:57 pm in reply to: Access 2007 Opening FE.mdb the first time? (A2007 (12.0.6334.5000) SP1 Jet 4.0 SP-8) #1146915Access 2007 Opening Access 2000 mdb For The First Time?
When a compiled, compacted Access 2000 FE.mdb is opened with Access 2007 for the first what happens exactly?
Does it get converted to a 2007 format? Are there any websites available that describes what happens in this process?
Thanks, John
![]() |
Patch reliability is unclear. Unless you have an immediate, pressing need to install a specific patch, don't do it. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |

Plus Membership
Donations from Plus members keep this site going. You can identify the people who support AskWoody by the Plus badge on their avatars.
AskWoody Plus members not only get access to all of the contents of this site -- including Susan Bradley's frequently updated Patch Watch listing -- they also receive weekly AskWoody Plus Newsletters (formerly Windows Secrets Newsletter) and AskWoody Plus Alerts, emails when there are important breaking developments.
Get Plus!
Welcome to our unique respite from the madness.
It's easy to post questions about Windows 11, Windows 10, Win8.1, Win7, Surface, Office, or browse through our Forums. Post anonymously or register for greater privileges. Keep it civil, please: Decorous Lounge rules strictly enforced. Questions? Contact Customer Support.
Search Newsletters
Search Forums
View the Forum
Search for Topics
Recent Topics
-
Difface : Reconstruction of 3D Human Facial Images from DNA Sequence
by
Alex5723
1 hour, 47 minutes ago -
Seven things we learned from WhatsApp vs. NSO Group spyware lawsuit
by
Alex5723
2 hours, 10 minutes ago -
Outdated Laptop
by
jdamkeene
7 hours, 13 minutes ago -
Updating Keepass2Android
by
CBFPD-Chief115
12 hours, 38 minutes ago -
Another big Microsoft layoff
by
Charlie
12 hours, 18 minutes ago -
PowerShell to detect NPU – Testers Needed
by
RetiredGeek
3 hours, 16 minutes ago -
May 2025 updates are out
by
Susan Bradley
12 hours, 43 minutes ago -
Windows 11 Insider Preview build 26200.5600 released to DEV
by
joep517
18 hours, 22 minutes ago -
Windows 11 Insider Preview build 26120.3964 (24H2) released to BETA
by
joep517
18 hours, 24 minutes ago -
Drivers suggested via Windows Update
by
Tex265
18 hours, 14 minutes ago -
Thunderbird release notes for 128 esr have disappeared
by
EricB
15 hours, 59 minutes ago -
CISA mutes own website, shifts routine cyber alerts to X, RSS, email
by
Nibbled To Death By Ducks
1 day, 1 hour ago -
Apple releases 18.5
by
Susan Bradley
19 hours, 39 minutes ago -
Fedora Linux 40 will go end of life for updates and support on 2025-05-13.
by
Alex5723
1 day, 2 hours ago -
How a new type of AI is helping police skirt facial recognition bans
by
Alex5723
1 day, 3 hours ago -
Windows 7 ISO /Windows 10 ISO
by
ECWS
10 hours, 34 minutes ago -
No HP software folders
by
fpefpe
1 day, 10 hours ago -
Which antivirus apps and VPNs are the most secure in 2025?
by
B. Livingston
8 hours, 18 minutes ago -
Stay connected anywhere
by
Peter Deegan
1 day, 16 hours ago -
Copilot, under the table
by
Will Fastie
1 day, 7 hours ago -
The Windows experience
by
Will Fastie
1 day, 22 hours ago -
A tale of two operating systems
by
Susan Bradley
2 hours, 49 minutes ago -
Microsoft : Resolving Blue Screen errors in Windows
by
Alex5723
2 days, 3 hours ago -
Where’s the cache today?
by
Up2you2
2 days, 19 hours ago -
Ascension says recent data breach affects over 430,000 patients
by
Nibbled To Death By Ducks
2 days, 12 hours ago -
Nintendo Switch 2 has a remote killing switch
by
Alex5723
1 day, 12 hours ago -
Blocking Search (on task bar) from going to web
by
HenryW
14 hours, 36 minutes ago -
Windows 10: Microsoft 365 Apps will be supported up to Oct. 10 2028
by
Alex5723
3 days, 12 hours ago -
Add or Remove “Ask Copilot” Context Menu in Windows 11 and 10
by
Alex5723
3 days, 12 hours ago -
regarding april update and may update
by
heybengbeng
3 days, 14 hours ago
Recent blog posts
Key Links
Want to Advertise in the free newsletter? How about a gift subscription in honor of a birthday? Send an email to sb@askwoody.com to ask how.
Mastodon profile for DefConPatch
Mastodon profile for AskWoody
Home • About • FAQ • Posts & Privacy • Forums • My Account
Register • Free Newsletter • Plus Membership • Gift Certificates • MS-DEFCON Alerts
Copyright ©2004-2025 by AskWoody Tech LLC. All Rights Reserved.