-
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
-
Extended Windows Built-in Disk Cleanup Utility
by
bbearren
4 hours, 14 minutes ago -
Win 11 24H2 June 2025 Update breaks WIFI
by
dportenlanger
7 hours, 54 minutes ago -
Update from WinPro 10 v. 1511 on T460p?
by
CatoRenasci
5 hours, 11 minutes ago -
System Restore and Updates Paused
by
veteran
10 hours, 24 minutes ago -
Windows 10/11 clock app
by
Kathy Stevens
4 hours, 26 minutes ago -
Turn off right-click draw
by
Charles Billow
13 hours, 38 minutes ago -
Introducing ChromeOS M137 to The Stable Channel
by
Alex5723
17 hours, 9 minutes ago -
Brian Wilson (The Beach Boys) R.I.P
by
Alex5723
14 minutes ago -
Master patch listing for June 10, 2025
by
Susan Bradley
18 hours, 46 minutes ago -
Suggestions for New All in One Printer and a Photo Printer Windows 10
by
Win7and10
1 hour, 19 minutes ago -
Purchasing New Printer. Uninstall old Printer Software First?
by
Win7and10
1 day ago -
KB5060842 Issue (Minor)
by
AC641
1 day, 5 hours ago -
EchoLeak : Zero Click M365 Copilot leak sensitive information
by
Alex5723
1 day, 7 hours ago -
24H2 may not be offered June updates
by
Susan Bradley
29 minutes ago -
Acronis : Tracking Chaos RAT’s evolution (Windows, Linux)
by
Alex5723
1 day, 20 hours ago -
June 2025 updates are out
by
Susan Bradley
8 hours, 44 minutes ago -
Mozilla shutting Deep Fake Detector
by
Alex5723
2 days, 11 hours ago -
Windows-Maintenance-Tool (.bat)
by
Alex5723
1 day, 20 hours ago -
Windows 11 Insider Preview build 26200.5641 released to DEV
by
joep517
2 days, 13 hours ago -
Windows 11 Insider Preview build 26120.4250 (24H2) released to BETA
by
joep517
2 days, 13 hours ago -
Install Office 365 Outlook classic on new Win11 machine
by
WSrcull999
2 days, 13 hours ago -
win 10 to win 11 with cpu/mb replacement
by
aquatarkus
2 days, 5 hours ago -
re-install Windows Security
by
CWBillow
2 days, 17 hours ago -
WWDC 2025 Recap: All of Apple’s NEW Features in 10 Minutes!
by
Alex5723
2 days, 20 hours ago -
macOS Tahoe 26
by
Alex5723
2 days, 14 hours ago -
Migrating from win10 to win11, instructions coming?
by
astro46
5 hours, 36 minutes ago -
Device Eligibility for Apple 2026 Operating Systems due this Fall
by
PKCano
2 days, 5 hours ago -
Recommended watching : Mountainhead movie
by
Alex5723
2 days, 6 hours ago -
End of support for Windows 10
by
Old enough to know better
5 hours, 1 minute ago -
What goes on inside an LLM
by
Michael Covington
5 hours, 57 minutes 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.