-
WSAndrewO
AskWoody LoungerThe only other instances I find when worksheets don’t copy is when they’re in some state that it is ‘greyed out’. For instance when actively editting a text box, or when a dialog is up but hidden behind the window. I’d be tempted to try range(“A1”).select to make sure
-
WSAndrewO
AskWoody LoungerI’m guessing as I don’t get this kind – but its a UTF-8 encoding that is not being encoded or decoded properly. I pick the ? is an “escape” character
-
WSAndrewO
AskWoody LoungerBy ‘hangs up’ do you mean
* ‘locks up’ as in will not do anything and has to be killed
* Disconnects a phone line from a dial-up modem (although I’m assuming not if you have a cable modem)
* Just doesn’t downloadIf the later, what happens if you click send/receive?
As a general rule of computing, any recent change is normally the cause, or has triggered a ‘feature’ that was already lurking. However, I’m hard pressed to see how this is the cause unless you’re dealing with an ISP network time-out that is being lost due to a firewall activity or some other ‘deep’ issue.
-
WSAndrewO
AskWoody LoungerBy ‘hangs up’ do you mean
* ‘locks up’ as in will not do anything and has to be killed
* Disconnects a phone line from a dial-up modem (although I’m assuming not if you have a cable modem)
* Just doesn’t downloadIf the later, what happens if you click send/receive?
As a general rule of computing, any recent change is normally the cause, or has triggered a ‘feature’ that was already lurking. However, I’m hard pressed to see how this is the cause unless you’re dealing with an ISP network time-out that is being lost due to a firewall activity or some other ‘deep’ issue.
-
WSAndrewO
AskWoody LoungerBest of luck. I found the codes by trial and error by recording macros as I set the trays
Sub SetLetterHead()
‘
‘ Macro written 11/10/2004 by Andrew Ollivier
‘
‘ Sets appropriate upper tray, prints, then resetsDim FirstTrayOn
Dim OtherTray‘ Assume that it is one of the Minoltas
FirstTrayOn = wdPrinterUpperBin
OtherTray = 508‘ Correct for the HP8100 Printer
If InStr(1, ActivePrinter, “HP8100”) > 1 Then
FirstTrayOn = wdPrinterLowerBin
OtherTray = wdPrinterLargeCapacityBin
End If‘ Or the HP 4200 one
If InStr(1, ActivePrinter, “4200”) > 1 Then
FirstTrayOn = 264
OtherTray = 263
End If‘ OK done – set the page for letterhead
With ActiveDocument.PageSetup
.FirstPageTray = FirstTrayOn
.OtherPagesTray = OtherTray
End With‘ Print the current document
ActiveDocument.PrintOut
‘ and reset the printer to plain
With ActiveDocument.PageSetup
.FirstPageTray = OtherTray
.OtherPagesTray = OtherTray
End WithEnd Sub
-
WSAndrewO
AskWoody LoungerBest of luck. I found the codes by trial and error by recording macros as I set the trays
Sub SetLetterHead()
‘
‘ Macro written 11/10/2004 by Andrew Ollivier
‘
‘ Sets appropriate upper tray, prints, then resetsDim FirstTrayOn
Dim OtherTray‘ Assume that it is one of the Minoltas
FirstTrayOn = wdPrinterUpperBin
OtherTray = 508‘ Correct for the HP8100 Printer
If InStr(1, ActivePrinter, “HP8100”) > 1 Then
FirstTrayOn = wdPrinterLowerBin
OtherTray = wdPrinterLargeCapacityBin
End If‘ Or the HP 4200 one
If InStr(1, ActivePrinter, “4200”) > 1 Then
FirstTrayOn = 264
OtherTray = 263
End If‘ OK done – set the page for letterhead
With ActiveDocument.PageSetup
.FirstPageTray = FirstTrayOn
.OtherPagesTray = OtherTray
End With‘ Print the current document
ActiveDocument.PrintOut
‘ and reset the printer to plain
With ActiveDocument.PageSetup
.FirstPageTray = OtherTray
.OtherPagesTray = OtherTray
End WithEnd Sub
-
WSAndrewO
AskWoody LoungerAt work, at a user’s request, I created a small macro that was linked to a button.
Effectively it was a “Print this letter with letterhead as the first page” commandIt
* Set the letterhead (using page setup (first page tray selected))
* Issued a print
* Reset the letterhead to plain (page setup again)They’re very happy with it.
The downside is that the printer codes for trays are absolutely unique to particular printers – I built the Macro by simply recording the above sequence on the target printer. I later modified it to detect the particular printer involved, and change the tray codes appropriately so that I could apply it universally in my installation. I can post a copy after the weekend if you’re interested.
-
WSAndrewO
AskWoody LoungerAt work, at a user’s request, I created a small macro that was linked to a button.
Effectively it was a “Print this letter with letterhead as the first page” commandIt
* Set the letterhead (using page setup (first page tray selected))
* Issued a print
* Reset the letterhead to plain (page setup again)They’re very happy with it.
The downside is that the printer codes for trays are absolutely unique to particular printers – I built the Macro by simply recording the above sequence on the target printer. I later modified it to detect the particular printer involved, and change the tray codes appropriately so that I could apply it universally in my installation. I can post a copy after the weekend if you’re interested.
-
WSAndrewO
AskWoody LoungerJanuary 6, 2005 at 3:34 am in reply to: How to compact a database programatically (2002 SP3) #918795Hans
As always – little gems of knowledge. I like the look of the Compact on Close option
-
WSAndrewO
AskWoody LoungerJanuary 6, 2005 at 3:34 am in reply to: How to compact a database programatically (2002 SP3) #918796Hans
As always – little gems of knowledge. I like the look of the Compact on Close option
-
WSAndrewO
AskWoody LoungerCharlotte
Thanks for trying. I find that in my debugging efforts I’ve lost the failed code (.close) and replaced it with working code.
I don’t really want to replicate the failure anymore. I’m now a happy camper (on this issue) at leastbut I’m sure you’ll see more intriguing posts from me as I stumble through the minefield.
-
WSAndrewO
AskWoody LoungerCharlotte
Thanks for trying. I find that in my debugging efforts I’ve lost the failed code (.close) and replaced it with working code.
I don’t really want to replicate the failure anymore. I’m now a happy camper (on this issue) at leastbut I’m sure you’ll see more intriguing posts from me as I stumble through the minefield.
-
WSAndrewO
AskWoody LoungerCharlotte
It may be difficult bcause the DB links with ODBC to a Foxpro database. When I get back to work I’ll see what I can do.I have a Macro that has a series of
OPENFORM
OPENQUERY
OPENQUERY
….
statementsThe OPENFORM is the dialog (and is done first thing, then dismissed)
The processing ‘seems’ to work fine until I eventually close Access (ten minutes later) – it goes into a 100% CPU loop at that point.
(I can avoid the lockup by using MsgBox twice in VBA, instead of the form)
I could post the form and its code if that helped. -
WSAndrewO
AskWoody LoungerCharlotte
It may be difficult bcause the DB links with ODBC to a Foxpro database. When I get back to work I’ll see what I can do.I have a Macro that has a series of
OPENFORM
OPENQUERY
OPENQUERY
….
statementsThe OPENFORM is the dialog (and is done first thing, then dismissed)
The processing ‘seems’ to work fine until I eventually close Access (ten minutes later) – it goes into a 100% CPU loop at that point.
(I can avoid the lockup by using MsgBox twice in VBA, instead of the form)
I could post the form and its code if that helped. -
WSAndrewO
AskWoody LoungerIf the first cell is in row 2
=”TCL/” & TEXT(ROW()-1,”000″)&”/05″
will do it – drag down as needed
![]() |
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
-
Cyberattack on some Washington Post journalists’ email accounts
by
Bob99
1 hour, 40 minutes ago -
Tools to support internet discussions
by
Kathy Stevens
4 hours, 24 minutes ago -
How get Group Policy to allow specific Driver to download?
by
Tex265
2 hours, 44 minutes ago -
AI is good sometimes
by
Susan Bradley
4 hours, 46 minutes ago -
Mozilla quietly tests Perplexity AI as a New Firefox Search Option
by
Alex5723
10 hours, 5 minutes ago -
Perplexity Pro free for 12 mos for Samsung Galaxy phones
by
Patricia Grace
1 day, 5 hours ago -
June KB5060842 update broke DHCP server service
by
Alex5723
1 day, 3 hours ago -
AMD Ryzen™ Chipset Driver Release Notes 7.06.02.123
by
Alex5723
1 day, 7 hours ago -
Excessive security alerts
by
WSSebastian42
8 hours, 35 minutes ago -
* CrystalDiskMark may shorten SSD/USB Memory life
by
Alex5723
1 day, 17 hours ago -
Ben’s excellent adventure with Linux
by
Ben Myers
39 minutes ago -
Seconds are back in Windows 10!
by
Susan Bradley
1 day, 4 hours ago -
WebBrowserPassView — Take inventory of your stored passwords
by
Deanna McElveen
10 hours, 49 minutes ago -
OS news from WWDC 2025
by
Will Fastie
8 hours, 11 minutes ago -
Need help with graphics…
by
WSBatBytes
12 hours, 25 minutes ago -
AMD : Out of Bounds (OOB) read vulnerability in TPM 2.0 CVE-2025-2884
by
Alex5723
2 days, 8 hours ago -
Totally remove or disable BitLocker
by
CWBillow
1 day, 7 hours ago -
Windows 10 gets 6 years of ESU?
by
n0ads
1 day, 10 hours ago -
Apple, Google stores still offer China-based VPNs, report says
by
Nibbled To Death By Ducks
2 days, 19 hours ago -
Search Forums only bring up my posts?
by
Deo
3 hours, 59 minutes ago -
Windows Spotlight broken on Enterprise and Pro for Workstations?
by
steeviebops
3 days, 7 hours ago -
Denmark wants to dump Microsoft for Linux + LibreOffice
by
Alex5723
2 days, 23 hours ago -
How to get Microsoft Defender to honor Group Policy Setting
by
Ralph
3 days, 7 hours ago -
Apple : Paragon’s iOS Mercenary Spyware Finds Journalists Target
by
Alex5723
3 days, 17 hours ago -
Music : The Rose Room – It’s Been A Long, Long Time album
by
Alex5723
3 days, 18 hours ago -
Disengage Bitlocker
by
CWBillow
3 days, 8 hours ago -
Mac Mini M2 Service Program for No Power Issue
by
Alex5723
3 days, 20 hours ago -
New Win 11 Pro Geekom Setup questions
by
Deo
3 hours, 47 minutes ago -
Windows 11 Insider Preview build 26200.5651 released to DEV
by
joep517
4 days, 4 hours ago -
Windows 11 Insider Preview build 26120.4441 (24H2) released to BETA
by
joep517
4 days, 4 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.