-
WSj01porter
AskWoody LoungerMore info …
I’ve since found that, on the affected workstations (those with SP1), if I move the file to a local drive, the additional information shows in the InfoTip box. The additional information does not show when the file is on a network drive.
The unaffected machines (those without SP1) do not have this problem — the additional information shows whether the file is on a network drive or on a local drive.
-
WSj01porter
AskWoody LoungerIf you wouldn’t mind, could you try moving your file to a network drive to see what happens? Can you see the additional info?
-
WSj01porter
AskWoody LoungerIf you wouldn’t mind, could you try moving your file to a network drive to see what happens? Can you see the additional info?
-
WSj01porter
AskWoody LoungerJanuary 28, 2004 at 6:50 pm in reply to: INSERT INTO, eliminating confirmation prompt (2002, SP2) #775787Here’s the exact code I used:
Set dbsNorthwind = CurrentDb
SQL1 = “INSERT INTO tblCylinders(SampleID, CylinderNumber) VALUES([SampleID],’A’);”
dbsNorthwind.Execute SQL1, dbFailOnError -
WSj01porter
AskWoody LoungerJanuary 28, 2004 at 6:50 pm in reply to: INSERT INTO, eliminating confirmation prompt (2002, SP2) #775788Here’s the exact code I used:
Set dbsNorthwind = CurrentDb
SQL1 = “INSERT INTO tblCylinders(SampleID, CylinderNumber) VALUES([SampleID],’A’);”
dbsNorthwind.Execute SQL1, dbFailOnError -
WSj01porter
AskWoody LoungerJanuary 28, 2004 at 6:44 pm in reply to: INSERT INTO, eliminating confirmation prompt (2002, SP2) #775782Same thing. I get RTE 3061. “Too few parameters. Expected 1.”
-
WSj01porter
AskWoody LoungerJanuary 28, 2004 at 6:44 pm in reply to: INSERT INTO, eliminating confirmation prompt (2002, SP2) #775783Same thing. I get RTE 3061. “Too few parameters. Expected 1.”
-
WSj01porter
AskWoody LoungerJanuary 28, 2004 at 6:04 pm in reply to: INSERT INTO, eliminating confirmation prompt (2002, SP2) #775755This works (I had to omit the equals sign). I’ll use this method for now, since I’ve not been able to figure out the Execute method.
Thank you.
-
WSj01porter
AskWoody LoungerJanuary 28, 2004 at 6:04 pm in reply to: INSERT INTO, eliminating confirmation prompt (2002, SP2) #775756This works (I had to omit the equals sign). I’ll use this method for now, since I’ve not been able to figure out the Execute method.
Thank you.
-
WSj01porter
AskWoody LoungerJanuary 28, 2004 at 2:34 pm in reply to: INSERT INTO, eliminating confirmation prompt (2002, SP2) #775583>>CurrentDB.Execute SQL1
I can’t seem to get the syntax (or something else) right…
I get Run-time error ‘3601’, Too few parameters. Expected 1.
I found the “Execute Method Example” in help … it’s kind of curious to me. There are two SQL strings in that example … Change … and … Restore.
For the Change string, this is done:
strSQLChange = “UPDATE Employees SET Country = ” & _
“‘United States’ WHERE Country = ‘USA'”
[…]
Set qdfChange = dbsNorthwind.CreateQueryDef(“”, _
strSQLChange)
[…]
ExecuteQueryDef qdfChange, rstEmployeesBut for the Restore string, only this is done (which matches the example you gave, i.e., no creating a query def first):
strSQLRestore = “UPDATE Employees SET Country = ” & _
“‘USA’ WHERE Country = ‘United States'”
[…]
dbsNorthwind.Execute strSQLRestore, dbFailOnErrorDo I need to create that query def for this to work? But they don’t show a query def for the Restore SQL string, above. Hmmm.
-
WSj01porter
AskWoody LoungerJanuary 28, 2004 at 2:34 pm in reply to: INSERT INTO, eliminating confirmation prompt (2002, SP2) #775584>>CurrentDB.Execute SQL1
I can’t seem to get the syntax (or something else) right…
I get Run-time error ‘3601’, Too few parameters. Expected 1.
I found the “Execute Method Example” in help … it’s kind of curious to me. There are two SQL strings in that example … Change … and … Restore.
For the Change string, this is done:
strSQLChange = “UPDATE Employees SET Country = ” & _
“‘United States’ WHERE Country = ‘USA'”
[…]
Set qdfChange = dbsNorthwind.CreateQueryDef(“”, _
strSQLChange)
[…]
ExecuteQueryDef qdfChange, rstEmployeesBut for the Restore string, only this is done (which matches the example you gave, i.e., no creating a query def first):
strSQLRestore = “UPDATE Employees SET Country = ” & _
“‘USA’ WHERE Country = ‘United States'”
[…]
dbsNorthwind.Execute strSQLRestore, dbFailOnErrorDo I need to create that query def for this to work? But they don’t show a query def for the Restore SQL string, above. Hmmm.
-
WSj01porter
AskWoody LoungerI’m using Showcase Query to get the data from the AS400 and drop it into Excel. Showcase Query is using ranges actually named “LinkedArea1” … “LinkedArea10”.
It looks like that NameManager might be a useful tool. I’m a little hesitant to try it in this instance though, because I’m afraid it might mess-up the links to Showcase Query (which are tiresome to build, since I’m combining two different datasets on the AS400 into one dataset in Excel).
-
WSj01porter
AskWoody LoungerI’m using Showcase Query to get the data from the AS400 and drop it into Excel. Showcase Query is using ranges actually named “LinkedArea1” … “LinkedArea10”.
It looks like that NameManager might be a useful tool. I’m a little hesitant to try it in this instance though, because I’m afraid it might mess-up the links to Showcase Query (which are tiresome to build, since I’m combining two different datasets on the AS400 into one dataset in Excel).
-
WSj01porter
AskWoody LoungerYes, exactly. The result is the same as using Union(R1,R2,…). Thank you.
And this is an excellent example of my frustration with the new Help systems in Office/VB. How am I supposed to know that you can do that? That a “range” can take “.cell()” on the end of it to refer to cells within that range? I spent, literally, hours going back and forth and throughout both VB help and Excel help to try to get it to tell me how to do that. It used to be (two versions of Office ago?), knowing little about what I was doing (bet you couldn’t tell :-), I could rely Help, which seemed so much more intuitive then, to help me pound out an application. No longer. For example, if I search for “ranges” the first thing that comes back is something about “SecondValue Property” and a bunch of other (mostly equally useless) stuff (as it relates to what I need to do). Search on “cells” gets me more stuff that gets me close, but never actually gets me there. If I type in “range.cells” or “referring to cells within a range” that gets me there, but who can think to type in exactly that. Very frustrating. I can’t believe I’m the only one experiencing this frustration.
Did they do this just to encourage people to hire programmers??
It doesn’t seem like a course in VB would be the answer, because that’s not going to tell me Range takes .Cell() either. What am I missing?
-
WSj01porter
AskWoody LoungerYes, exactly. The result is the same as using Union(R1,R2,…). Thank you.
And this is an excellent example of my frustration with the new Help systems in Office/VB. How am I supposed to know that you can do that? That a “range” can take “.cell()” on the end of it to refer to cells within that range? I spent, literally, hours going back and forth and throughout both VB help and Excel help to try to get it to tell me how to do that. It used to be (two versions of Office ago?), knowing little about what I was doing (bet you couldn’t tell :-), I could rely Help, which seemed so much more intuitive then, to help me pound out an application. No longer. For example, if I search for “ranges” the first thing that comes back is something about “SecondValue Property” and a bunch of other (mostly equally useless) stuff (as it relates to what I need to do). Search on “cells” gets me more stuff that gets me close, but never actually gets me there. If I type in “range.cells” or “referring to cells within a range” that gets me there, but who can think to type in exactly that. Very frustrating. I can’t believe I’m the only one experiencing this frustration.
Did they do this just to encourage people to hire programmers??
It doesn’t seem like a course in VB would be the answer, because that’s not going to tell me Range takes .Cell() either. What am I missing?
![]() |
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
-
.NET 8.0 Desktop Runtime (v8.0.16) – Windows x86 Installer (Awaiting moderation)
by
WSmeyerbos
32 minutes ago -
Neowin poll : What do you plan to do on Windows 10 EOS
by
Alex5723
47 minutes ago -
May 31, 2025—KB5062170 (OS Builds 22621.5415 and 22631.5415 Out-of-band
by
Alex5723
58 minutes ago -
Discover the Best AI Tools for Everything
by
Alex5723
10 hours, 12 minutes ago -
Edge Seems To Be Gaining Weight
by
bbearren
4 hours, 59 minutes ago -
Rufus is available from the MSFT Store
by
PL1
21 hours, 11 minutes ago -
Microsoft : Ending USB-C® Port Confusion
by
Alex5723
23 hours, 20 minutes ago -
KB5061768 update for Intel vPro processor
by
drmark
5 hours, 45 minutes ago -
Outlook 365 classic has exhausted all shared resources
by
drmark
1 hour, 56 minutes ago -
My Simple Word 2010 Macro Is Not Working
by
mbennett555
19 hours, 5 minutes ago -
Office gets current release
by
Susan Bradley
21 hours, 43 minutes ago -
FBI: Still Using One of These Old Routers? It’s Vulnerable to Hackers
by
Alex5723
2 days, 11 hours ago -
Windows AI Local Only no NPU required!
by
RetiredGeek
1 day, 20 hours ago -
Stop the OneDrive defaults
by
CWBillow
2 days, 12 hours ago -
Windows 11 Insider Preview build 27868 released to Canary
by
joep517
2 days, 22 hours ago -
X Suspends Encrypted DMs
by
Alex5723
3 days ago -
WSJ : My Robot and Me AI generated movie
by
Alex5723
3 days, 1 hour ago -
Botnet hacks 9,000+ ASUS routers to add persistent SSH backdoor
by
Alex5723
3 days, 1 hour ago -
OpenAI model sabotages shutdown code
by
Cybertooth
3 days, 2 hours ago -
Backup and access old e-mails after company e-mail address is terminated
by
M W Leijendekker
2 days, 14 hours ago -
Enabling Secureboot
by
ITguy
2 days, 21 hours ago -
Windows hosting exposes additional bugs
by
Susan Bradley
3 days, 10 hours ago -
No more rounded corners??
by
CWBillow
3 days, 5 hours ago -
Android 15 and IPV6
by
Win7and10
2 days, 19 hours ago -
KB5058405 might fail to install with recovery error 0xc0000098 in ACPI.sys
by
Susan Bradley
3 days, 22 hours ago -
T-Mobile’s T-Life App has a “Screen Recording Tool” Turned on
by
Alex5723
4 days, 1 hour ago -
Windows 11 Insider Preview Build 26100.4202 (24H2) released to Release Preview
by
joep517
3 days, 19 hours ago -
Windows Update orchestration platform to update all software
by
Alex5723
4 days, 8 hours ago -
May preview updates
by
Susan Bradley
3 days, 19 hours ago -
Microsoft releases KB5061977 Windows 11 24H2, Server 2025 emergency out of band
by
Alex5723
3 days, 11 hours ago
Recent blog posts
Key Links
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
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.