-
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
![]() |
There are isolated problems with current patches, but they are well-known and documented on this site. |
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
-
Installing Feature Update Windows 11 24H2
by
geekdom
9 hours, 50 minutes ago -
Windows 11 Insider Preview build 27823 released to Canary
by
joep517
10 hours, 14 minutes ago -
Windows 11 Hotpatch
by
Hackmuss
5 hours, 6 minutes ago -
System Guard service error still won’t be fixed
by
Susan Bradley
10 hours, 53 minutes ago -
Operation ForumTroll: APT attack with Google Chrome zero-day exploit chain
by
Alex5723
5 hours, 4 minutes ago -
Troy Hunt of HaveIBeenPwned Phished
by
Lars220
2 hours, 5 minutes ago -
Microsoft Windows security auditing Code 5061
by
mpw
23 hours, 25 minutes ago -
Can’t display images in incoming Outlook 365 emails
by
WScopwriter
7 hours, 1 minute ago -
Windows 11 Insider Preview Build 26200.5510 early builds of 25H2
by
Alex5723
8 hours, 29 minutes ago -
0Patch : Micropatches released for SCF File NTLM Hash Disclosure Vulnerability
by
Alex5723
7 hours, 59 minutes ago -
Select multiple emails and they all open up!
by
CeeJay
2 days ago -
How to remove an update preview
by
Gunny
3 hours, 23 minutes ago -
Third party add ins reminder
by
Susan Bradley
1 day, 4 hours ago -
OTF, which backs Tor, Let’s Encrypt and more, sues to save its funding
by
Nibbled To Death By Ducks
1 day, 18 hours ago -
Updating Windows 10 to Windows 11: 23H2 or 24H2?
by
Still Anonymous
2 days, 5 hours ago -
How can I update “Explorer Patcher”
by
WSplanckster
2 days, 6 hours ago -
Check out the home page for Signal
by
CAS
2 days, 4 hours ago -
Windows 11 and Trial version of MS Office
by
Tex265
2 days, 3 hours ago -
Windows 11 Insider Preview build 26120.3585 (24H2) released to BETA
by
joep517
2 days, 11 hours ago -
Windows 11 Insider Preview build 26200.5510 released to DEV
by
joep517
2 days, 11 hours ago -
Windows 11 Insider Preview Build 26100.3624 (24H2) released to Release Preview
by
joep517
2 days, 11 hours ago -
Limits on User Names
by
CWBillow
2 days, 8 hours ago -
MS-DEFCON 4: Mixed bag for March
by
Susan Bradley
8 hours, 4 minutes ago -
Non Apple Keyboards
by
pmcjr6142
9 hours, 20 minutes ago -
How to delete your 23andMe data – The Verge
by
AJNorth
2 days, 6 hours ago -
7 common myths about Windows 11 (Microsoft AD)
by
EyesOnWindows
2 days, 3 hours ago -
Error updating to Win11 0x8024a205
by
bmeacham
3 hours, 23 minutes ago -
default apps
by
chasfinn
1 day, 11 hours ago -
Will MS Works 4 work in MS Win 11?
by
MileHighFlyer
3 hours, 9 minutes ago -
Adding links to text in Word 2000
by
sgeneris
2 days, 10 hours ago
Recent blog posts
- System Guard service error still won’t be fixed
- Third party add ins reminder
- MS-DEFCON 4: Mixed bag for March
- Classic and Extended Control Panel — no need to say goodbye
- Things you can do in 2025 that you couldn’t do in 2024
- Revisiting Windows 11’s File Explorer
- Planning ahead for migration
- Woody Leonhard (1951–2025)
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.