-
H. Legare Coleman
AskWoody PlusDid you put the double quotes around “%1” when you added it to the end of the command line like Hans said in his message? If you did not, that would cause this problem with any file that has a space in the name,
-
H. Legare Coleman
AskWoody PlusI wonder if they have figured out yet what their customers think of the Registration/Activation wizard and the user interface in the current versions of Office and Windows?
-
H. Legare Coleman
AskWoody PlusI think questions 1 & 2 are bad questions:
For question 1 I answered Fill Series which I think is correct. I do not think that Fill Handle is correct since it could also result in Fill Copy which would not do what was asked.
For question e I answered “None of the above” since Paste/Special/Transpose was not a choice and I think Pivot Table is not the best tool to do what was asked, even if it can accomplish the desired result it is to complicated for the asked question.
I got all the rest correct.
-
H. Legare Coleman
AskWoody PlusThanks. I played ariund with InternetConnect but I can’t figure out how to make it work.
-
H. Legare Coleman
AskWoody PlusOK, I think I see the problem. The download is from a proprietary site which I have to log onto before I can download the files. I thought that, if I was currently logged onto the site in IE, then I could use this to download the files.. However, it looks like the 12kb file is actually the HTML for a logon page. Any way around that.
-
H. Legare Coleman
AskWoody PlusI thought that was going to work. I tested it by downloading a .xls file from here in the lounge and everything went perfectly. However, when I tried it on the real file that I need to download (a 23meg .mpg file), the file I ended up with was 12kb. I didn’t get any reported error. Do you know if there is some limit on what can be downloaded using this?
-
H. Legare Coleman
AskWoody PlusThanks, I’ll take a look at that. WININET.DLL does seem to be there.
-
H. Legare Coleman
AskWoody PlusThanks. However, I have just had to buy a new computer and much to my dislike the new one came with VISTA Home Premimum installed. From what I can find out by searching the MS web site, MSINET.OCX does not come with VISTA, and I can’t find where it was replaced with something else. It also looks like the old MSINET.OCX can not be installed on VISTA.
-
H. Legare Coleman
AskWoody PlusNo, you have several problems. First, ISEMPTY only works on a single cell not a range. Second, your IF statement doesn’t do anything if ISEMPTY returns true. Does this do what you want?
Sub ss()
Dim i As Integer
Range("B1").Select
ActiveCell.FormulaR1C1 = "1"
ActiveCell.Offset(1, 0).Select
For i = 1 To Range("a1:a7").Cells.Count
If IsEmpty(ActiveCell.Offset(0, -1)) Then
Exit For
End If
ActiveCell.FormulaR1C1 = "=R[-1]C+1"
ActiveCell.Offset(1, 0).Select
Next i
Range("C1").Select
End Sub
-
H. Legare Coleman
AskWoody PlusIn addition to what Hans has said, from what I see you do not need either the WORKDAY or the DAY functions in this case. You could just format A3 as “ddd dd”. If you need the result in another cell, then in that cell you could just use =A3 and format that cell as “ddd dd”.
-
H. Legare Coleman
AskWoody PlusWell, it has been almost a week since I read a post somewhere here in the Lounge about a problem someone was having that was caused by the Registration/Activation Wizard. The fact that a lot of people have been using it for 6 years does not mean that a bug won’t crop up tomorrow that will shut them all down. These are the same programmers that produced Windows security code after all. I have told XP to use the classic interface, but it is still different in ways that I so far do not like. I am sitting here right now looking at the new IE 7 interface that has move everything on the tool bars around, changed the icons and look, and removed the control that use to allow me to change things around to the way that I like.
-
H. Legare Coleman
AskWoody PlusIf “time displays as military time in the column and am/pm time in the formula bar”, then that indicates that those values are Excel Date Time values. However, you haven’t told us anything that we can use to determine if those values also contain the date. If those values do not contain the date, then they will sort in order without reguard to which date they fall on. Are the dates by chance in a different column. You could save us all a lot of time trying to figure out what you have if you would upload the workbook. You can delete everything but the column or columns that contain the dates and times.
-
H. Legare Coleman
AskWoody PlusIn my opinion, all MS software that contains the Registration/Activation Wizard is a pain and is broken. I was just forced to downgrade from Windows and Office 2K to Windows and Office XP since the AntiVirus software I was using stopped supporting Windows 2K and the only AV software I could find that claimed to still run on W2K caused W2K to not boot any longer. So, now I am not only forced to risk the Registration/Activation Wizard deciding that I don’t have a valid installation and refusing to give me access to my data, but I now have a user interface which I do not like as well as 2K.
-
H. Legare Coleman
AskWoody PlusThanks, I’ll take a look.
-
H. Legare Coleman
AskWoody PlusThe “o” in front of oCell does not tell VBA anything. It is simply a naming convention that tell people reading the macro that the variable is an Object variable and therefore requires the use of the SET statement to assign a value to it. It is the DIM oCell statement that tells VBA something. There is absolutely nothing that would prevent you from using the DIM statement DIM oCell As Integer and then using oCell to hold integer values. However, that might confuse people reading the macro code.
What might have to be changed in a Sub Procedure to be able to copy it and paste it into another workbook depends completely on what is in the code in the procedure. For example, if the code is in a Worksheet Module and uses the ME. object to refer to the worksheet, and you copy and paste the code into a regular module in another workbook, then ME. will be undefined when the macro runs and must be changed to another way of refering to the worksheet like ActiveSheet. One thing that most likely would always need to be changed when moving code from an of the special modules like the a WorkSheet module to a regular module is the procedure name. Having a procedure with one of the special event procedure names like Worksheet_Change in a regular module could confuse VBA.
![]() |
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
-
Toll road scams are back: What to do if you get a text saying you owe money
by
Alex5723
40 minutes ago -
Windows update download issue…
by
CAS
14 minutes ago -
WUMGR & KB5053602 UPDATE/INSTALL FAIL
by
dataman1701
3 hours, 18 minutes ago -
Finding Microsoft Office 2021 product key
by
Kathy Stevens
4 hours, 18 minutes ago -
Over-the-Top solves it!
by
RetiredGeek
14 hours, 49 minutes ago -
To Susan – Woody Leonhard, the “Lionhearted”
by
Myst
21 hours, 50 minutes ago -
Extracting Data From All Sheets
by
WSJon5
23 hours, 25 minutes ago -
Use wushowhide in Windows 11 24H2?
by
Tex265
1 hour, 30 minutes ago -
Hacktool:Win32/Winring0
by
Marvel Wars
10 hours, 14 minutes ago -
Microsoft Defender as Primary Security Question
by
blueboy714
4 hours, 59 minutes ago -
USB printers might print random text with the January 2025 preview update
by
Alex5723
4 hours, 37 minutes ago -
Google’s 10-year-old Chromecast is busted, but a fix is coming
by
Alex5723
1 day, 11 hours ago -
Expand the taskbar?
by
CWBillow
1 day, 11 hours ago -
Gregory Forrest “Woody” Leonhard (1951-2025)
by
Susan Bradley
1 hour, 41 minutes ago -
March 2025 updates are out
by
Susan Bradley
4 hours, 18 minutes ago -
Windows 11 Insider Preview build 26120.3380 released to DEV and BETA
by
joep517
2 days, 5 hours ago -
Update Firefox to prevent add-ons issues from root certificate expiration
by
Alex5723
2 days, 12 hours ago -
Latest Firefox requires Password on start up
by
Gordski
1 hour, 28 minutes ago -
Resolved : AutoCAD 2022 might not open after updating to 24H2
by
Alex5723
3 days, 1 hour ago -
Missing api-ms-win-core-libraryloader-11-2-1.dll
by
IreneLinda
2 days ago -
How Much Daylight have YOU Saved?
by
Nibbled To Death By Ducks
2 days, 2 hours ago -
A brief history of Windows Settings
by
Simon Bisson
1 day, 20 hours ago -
Thunderbolt is not just for monitors
by
Ben Myers
1 day, 19 hours ago -
Password Generators — Your first line of defense
by
Deanna McElveen
2 days ago -
AskWoody at the computer museum
by
Will Fastie
1 day ago -
Planning for the unexpected
by
Susan Bradley
2 days, 1 hour ago -
Which printer type is the better one to buy?
by
Bob99
3 days, 2 hours ago -
Upgrading the web server
by
Susan Bradley
3 days, 1 hour ago -
New Windows 11 24H2 Setup – Initial Win Update prevention settings?
by
Tex265
3 days, 20 hours ago -
Creating a Google account
by
DavidofIN
3 days, 19 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.