-
WSmikemay
AskWoody LoungerThanks, that worked fine. I should have thought of the Properties window.
-
WSmikemay
AskWoody LoungerThanks, but I had already tried right-clicking on the module name. Project Properties are available, but not module properties. By the way, I’m running VB 6.0, version 8435.
-
WSmikemay
AskWoody LoungerThanks, but I had already tried right-clicking on the module name. Project Properties are available, but not module properties. By the way, I’m running VB 6.0, version 8435.
-
WSmikemay
AskWoody LoungerR2,
I considered setting up Karen’s NetMonitor a couple of months back, when we were having ISP troubles at the office, but ended up with a conundrum: how do I get email notification when the ISP is down? As far as I could tell, her Mailer II program wouldn’t work with Windows Messaging. Admittedly, I haven’t gotten around to emailing her about this.
-
WSmikemay
AskWoody LoungerR2,
I considered setting up Karen’s NetMonitor a couple of months back, when we were having ISP troubles at the office, but ended up with a conundrum: how do I get email notification when the ISP is down? As far as I could tell, her Mailer II program wouldn’t work with Windows Messaging. Admittedly, I haven’t gotten around to emailing her about this.
-
WSmikemay
AskWoody LoungerHans,
I believe you are correct. GetSetting and SaveSetting only work with
HKEY_CURRENT_USERSoftwareVB and VBA Program Settings
according to John Walkenbach’s book on Excel 2000 VBA programming. I’ve used these functions successfully to stash settings for my VBA programs, which is probably their intended purpose. I’m thinking that Charlotte didn’t mean to imply that they could access ANY setting in HKCU.
-
WSmikemay
AskWoody Loungerie5.freeservers.com
contains a link that didn’t work for me. However, the Internet Explorer home page (sort of) works. Over on the right side are the links to IE6SP1 and IE5.5SP2. You can get to IE5.01 via the Downloads menu on the left. The IEAK page is accessible from the Related Technologies menu on the left.
Each of these IE links downloads a loader/installer program that is 450-500K (e.g., ie6setup.exe). If you select the radio button for
Install Minimal, or customize...
and click on
Advanced...
it supposedly will let you download the “Full” version for later installation (I think it’s really the “typical” version–the ie6sp1 download was 25.9MB). The problem is, how do I install it? The setup program still wants to go to the internet, even if I choose Minimal installation. I had the same problem with all three versions (5.01, 5.5 and 6) on Win98SE.
I tried to run IEAK6, but it said I needed IE6 first. Catch-22!
Any suggestions? I also need IE only for system libraries used by other programs.
-
WSmikemay
AskWoody Lounger(Edited by mikemay on 14-Oct-02 21:50. )
Microsoft no longer has RegClean on its web site, but you can get RegClean 4.1a from other folks who have posted it. Just run a search in Google (or your favorite search engine). A couple of other utilities that claim registry-cleaning functionality are referenced at http://is-it-true.org/nt/atips/atips53.shtml%5B/url%5D. It’s a good idea to back up your registry before running it.
I meant to add that there is some user commentary on RegClean at http://download.com.com/3302-2094-881470.html?tag=mta%5B/url%5D. You might consider the comments before proceeding.
-
WSmikemay
AskWoody LoungerIf you were running Internet Connection Sharing (which you probably aren’t, since you don’t have a home network), I think there is an icon in the lower right that allows you to disable/enable ICS on your (client) machine.
Did your LinkSys Router come with any kind of management/troubleshooting software? That might be an angle to try.
-
WSmikemay
AskWoody LoungerIn IrfanView, you can adjust the degree of compression using the Options button in the SaveAs dialog box. There’s also a tab for using lossless compression in JPEG2000 format, which I haven’t tried.
Sometimes resampling an image can help. Select Resize/Resample on the Image menu. You might also try this after Increase Color Depth (also on the Image menu). You can’t really get better “resolution” of a blurry image this way, but the eye can interpret increased color depth as equivalent to an increased pixels density.
You could also try the Sharpen command on the Image menu.
Good luck, and let us know if any of these techniques help.
-
WSmikemay
AskWoody Lounger
You are absolutely correct. So somebondy read my code after all! Thanks. -
WSmikemay
AskWoody LoungerGentlemen,
Thank you for your suggestions. I was hoping that Excel could handle what I wanted directly, but (as Steve pointed out) it appears that it doesn’t. However, I adapted Peter’s suggestion to set the format based on the results of “casting out ones.” This appears to give the look that I want (at least on the test data that I’m using
). I had to write my own function (dModD) to perform the modulo division on Doubles, since the VBA mod operator and CLng() function both round round floating point inputs, instead of truncating them. That coding was pretty straightforward, though.
The discussion of side effects on the ability to do calculations was also very informative. It hadn’t occurred to me that one could get a useful numerical result by “adding” text strings. After playing with it, I was even more surprised that it gave the correct answer when SUM() wouldn’t!
'if value is within 1 min. of an hour then format without decimal point If dModD(Cell.Value, 1) 0.983 Then Cell.NumberFormat = "0" Else Cell.NumberFormat = "0.##" End If
Another interesting aspect of this discussion is what I left out of my question (because I didn’t realize that it was relevant
). My worksheet is generated by VBA code, using data that were generated by another program. The worksheet’s purpose is to format/present and in some cases to graph that data, so calculations aren’t necessary. My user is in the US, so the international issues won’t matter. It’s always good to know the limitations of pieces of code, though, because somehow they seem to get re-used.
-
WSmikemay
AskWoody LoungerHmm, that looks a lot more elegant than the function I wrote. Why would anyone object? Because of the GoTo?
My code looks to see whether there are any user-defined custom lists. If any are present, it checks those lists to see if the first and last entries are those of my list. If not, it creates my list from a worksheet. I’d still have to do some of that in my error handling routine, but that still might have been a better approach. However, since it’s working, I’ll leave it alone. Thanks.
Function lMakeCustomList(rgListData As Range) As Long ' 'Checks to see if custom list containing "Walnut" and "Production Alternate" already exists. 'Creates it from "hard-wired" range in StationInfo if it does not. Returns List Number. 'VBA NOTE: Contrary to Help, AddCustomList method fails if list already exists. '26-Aug-2002 M.L.May -- working procedure with argument and variant list array Dim lLists As Long 'number of Custom Lists Dim l As Long 'list counter Dim i As Integer 'generic loop counter Dim bFound As Boolean 'true if station list was found Dim ListArray() As Variant 'variant array to hold Custom List 'if lList > 4 then custom lists exist, so check 'em all for first and last entries Application.StatusBar = "Looking for Custom List
-
WSmikemay
AskWoody LoungerHans,
It’s interesting that AddCustomList doesn’t fail in XL97. I had to make an ugly work-around in XL2000 to account for the case in which the list had already been created.
And regarding the constants, I guess it’s a matter of semantics on the names. I suppose one could consider “sorting a row” to mean sorting the elements in the rows, i.e. sorting from left to right. On the other hand, “sorting BY rows” seems to me to mean something different. Oh, well, now I know what Microsoft means by it. Thanks.
-
WSmikemay
AskWoody LoungerAugust 29, 2002 at 7:10 am in reply to: File Management or How to use startup parameters (97/2000/XP) #612338Hmmm
. Depending on how your program code works, you may want to load it after the data.vzg file, and modify your code to operate on the previously-opened .vzg workbook.
![]() |
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
-
Global data centers (AI) are driving a big increase in electricity demand
by
Kathy Stevens
2 hours, 57 minutes ago -
Office apps read-only for family members
by
b
5 hours, 33 minutes ago -
Defunct domain for Microsoft account
by
CWBillow
2 hours, 25 minutes ago -
24H2??
by
CWBillow
31 minutes ago -
W11 23H2 April Updates threw ‘class not registered’
by
WindowsPersister
14 hours, 19 minutes ago -
Master patch listing for April 8th, 2025
by
Susan Bradley
7 hours, 32 minutes ago -
TotalAV safety warning popup
by
Theodore Nicholson
2 hours, 22 minutes ago -
two pages side by side land scape
by
marc
2 days, 3 hours ago -
Deleting obsolete OneNote notebooks
by
afillat
2 days, 5 hours ago -
Word/Outlook 2024 vs Dragon Professional 16
by
Kathy Stevens
1 day, 8 hours ago -
Security Essentials or Defender?
by
MalcolmP
1 day, 11 hours ago -
April 2025 updates out
by
Susan Bradley
6 hours, 3 minutes ago -
Framework to stop selling some PCs in the US due to new tariffs
by
Alex5723
1 day, 4 hours ago -
WARNING about Nvidia driver version 572.83 and 4000/5000 series cards
by
Bob99
18 hours, 31 minutes ago -
Creating an Index in Word 365
by
CWBillow
1 day, 21 hours ago -
Coming at Word 365 and Table of Contents
by
CWBillow
9 hours, 6 minutes ago -
Windows 11 Insider Preview Build 22635.5170 (23H2) released to BETA
by
joep517
3 days ago -
Has the Microsoft Account Sharing Problem Been Fixed?
by
jknauth
3 days, 3 hours ago -
W11 24H2 – Susan Bradley
by
G Pickerell
3 days, 5 hours ago -
7 tips to get the most out of Windows 11
by
Alex5723
3 days, 3 hours ago -
Using Office apps with non-Microsoft cloud services
by
Peter Deegan
2 days, 21 hours ago -
I installed Windows 11 24H2
by
Will Fastie
1 day, 3 hours ago -
NotifyIcons — Put that System tray to work!
by
Deanna McElveen
3 days, 9 hours ago -
Decisions to be made before moving to Windows 11
by
Susan Bradley
2 hours, 31 minutes ago -
Port of Seattle says ransomware breach impacts 90,000 people
by
Nibbled To Death By Ducks
3 days, 17 hours ago -
Looking for personal finance software with budgeting capabilities
by
cellsee6
3 days, 1 hour ago -
ATT/Yahoo Secure Mail Key
by
Lil88reb
3 days, 1 hour ago -
Devices with apps using sprotect.sys driver might stop responding
by
Alex5723
4 days, 10 hours ago -
Neowin – 20 times computers embarrassed themselves with public BSODs and goofups
by
EP
4 days, 19 hours ago -
Slow Down in Windows 10 performance after March 2025 updates ??
by
arbrich
18 hours, 31 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.