-
WSAndrewO
AskWoody LoungerThread starting with post 186905 has a discussion on this, and has two potential solutions
-
WSAndrewO
AskWoody LoungerStuart
This drop-down list is independent of your contacts – it is just a record of previously typed things.
To delete a single entry, start typing a name, wait for the drop-down to appear, navigate to the unwanted address (use arrow keys) and press delete
-
WSAndrewO
AskWoody LoungerI think I understand what /automation does – but what does /regserver do?
-
WSAndrewO
AskWoody LoungerOctober 31, 2002 at 5:27 am in reply to: Word 2000 and Word 2002 on the same computer (2000/2002) #627875I’m running two versions of Excel and agree with the previous post
– definitely load to a different place than Microsoft Office (I didn’t and got into serious difficulty)
– also rename your old icons as Word 97 or whatever to avoid strange replacementsBoth mine are on C: and co-exist happily enough
-
WSAndrewO
AskWoody LoungerHey – that’s one of the best ways that I’ve seen
The only other method I know of involves fishing them out of an old message – yours is better.
-
WSAndrewO
AskWoody LoungerIts not clear what you’re trying to achieve with ‘user’ templates.
If your templates are “standard” they would be better installed as group templates in a shared directory area.
-
WSAndrewO
AskWoody LoungerI had no problems importing an Outlook 97 pst to Outlook 2002.
I’d suspect that your user created a wierd file. -
WSAndrewO
AskWoody LoungerI assume you mean as part of an installation configuration?
(Once Outlook has started, its simply a toggle on the ‘view’ menu.
Worst case, therefore is a manual process of toggling it off. -
WSAndrewO
AskWoody LoungerOctober 27, 2002 at 6:45 pm in reply to: Find/Replace not working with styles (Word 2002/XP SP-2) #626985It worked for me as a .DOC, but failed as a .DOT – my assumption is that it somehow relates to the attributes of a template.
-
WSAndrewO
AskWoody LoungerI’ve found that selecting all ROWS from the last ‘real’ empty cell to a couple past the Excel ‘imaginary-end’ cell and then Deleting those rows,
then repeating for COLUMNS works for most cases. (Presumably as it ensures that formats, contents, conditional formating and name ranges are all cleared.) -
WSAndrewO
AskWoody LoungerOctober 27, 2002 at 7:00 am in reply to: Find/Replace not working with styles (Word 2002/XP SP-2) #626924Geoff
[Editted by Andrew]
I’ve got no idea of the cause either. However, I could ‘fix’ it by coding
ActiveDocument.Content.Select
Prior to the Selection.find statements.
I assume that the template’s state is odd – but cannot explain it.
-
WSAndrewO
AskWoody LoungerI haveOutlook XP with SP2 and latest security patches installed and Organize works fine
I tested both Move and rule create – both worked with no errors.
This is a stand-alone installation using a PST file.Accordingly, I assume that you have configuration issues to search out
-
WSAndrewO
AskWoody LoungerOops
Reading between the lines of this message I detect that the changes requested are not as ‘mindless’ as I coded.
I begin to think that things like “S045” only have to be added if they are not already there.
My suggestion is that we send direct emails for the fine-tuning – rather than bother the board.
-
WSAndrewO
AskWoody LoungerArage
OK – try the following code.
Cut and paste this to the Outlook “ThisOutLookSession” code space.
Note that by default Outlook disables macros and doesn’t tell you it has – you’ll need to enable them to at most ‘Medium’ security.I’ve had to make some assumptions for the purposes of design that you will need to review.
This routine triggers on the NEWMAIL event, and looks for mail with file attachments
If it sees file types CSV TXT or 001 it then asks if it should convert them.
You can change the file types looked for by modifying the variable ‘MyExts’ – you can add more by just typing .EXT inside the quotes where EXT is your new extension.
For testing I also used directory C:TEMP to create reformatted files in – change MyPath as needed for your network drive.
I have coded changes to data as follows –
Column 2 has 001 added
Columns 4 & 5 have quotes
Column 4 has R00 at front
Column 5 has S045 at front
The LAST column has date extended. Note that I specifically coded it as the last, rather than 10th column because this protects the code if you text fields ever contain commas
The program is designed so that similar changes could be made without a big deal
Public Myolapp As Variant
Public I As Long
Public J As Long
Public MyExt As String
Public MyExts As String
Public MyFile As String
Public MyPath As StringPrivate Sub Application_NewMail()
‘ Identifies incoming mail that has an attachment that matches our target type
‘ if so, asks, and translates it to new format and save‘ Change the following two constants as required to get things working right
‘ First is simply a list of valid extensions to trigger reformating actionMyExts = “.CSV.TXT.001”
‘ Second is the path for re-formatted files to go to
MyPath = “C:TEMP”
‘ Preliminary setup to view new mail
Set Myolapp = CreateObject(“Outlook.Application”)
Set myNameSpace = Myolapp.GetNamespace(“MAPI”)
Set Myolapp.ActiveExplorer.CurrentFolder = _
myNameSpace.GetDefaultFolder(olFolderInbox)‘ Identify unread mail and deal with it
With Myolapp.ActiveExplorer.CurrentFolder
For I = 1 To .Items.Count
If .Items(I).UnRead = True Then
For J = 1 To .Items(I).Attachments.Count
MyFile = .Items(I).Attachments(J).DisplayName
MyExt = Right(MyFile, 4)
If InStr(1, MyExts, MyExt, vbTextCompare) > 0 Then
If MsgBox(“Reformat file ‘” & MyFile & “‘?”, buttons:=vbOKCancel) = 1 Then
MyFile = MyPath & “” & Left(MyFile, Len(MyFile) – 4) & “._B4”
.Items(I).Attachments(J).SaveAsFile MyFile
Reformat MyFile
End If
.Items(I).UnRead = False
End If
Next J
End If
Next I
End WithEnd Sub
Sub Reformat(target As String)
Dim I As Long
Dim J As Long
Dim DateCol As Long
Dim MyRec As String
Dim MyFields(100) As String‘ This would have been easier in Excel but it cannot refrain from re-formating quotes
‘ so – lets just do it the hard way
‘ Just read the file line by line, break it out into fields, and then rewriteOpen target For Input As #1
Open Left(target, Len(target) – 4) & “.CSV” For Output As #2
Line Input #1, MyRec
While Not EOF(1)
‘ it is easier and less bug-prone to split into fields than try to be clever
J = 1
I = InStr(1, MyRec, “,”)
While I > 0
MyFields(J) = Left(MyRec, I – 1)
MyRec = Mid(MyRec, I + 1)
J = J + 1
I = InStr(1, MyRec, “,”)
Wend
MyFields(J) = MyRec‘ This is the section that makes the requested changes
MyFields(2) = Left(MyFields(2), Len(MyFields(2)) – 1) & “001”””
MyFields(4) = “””R00” & MyFields(4) & “”””
MyFields(5) = “””S045” & MyFields(5) & “”””
‘ Set the column for date as the last column.
‘ Why? to protect from possible commas in the text fields
MyFields(J) = Left(MyFields(J), Len(MyFields(J)) – 3) & “20” & Right(MyFields(J), 3)‘ then we put it all back together and write it out
For I = 1 To J – 1
Print #2, MyFields(I); “,”;
Next I
Print #2, MyFields(J)
Line Input #1, MyRec
Wend
Close #1
Close #2End Sub
-
WSAndrewO
AskWoody LoungerThis may not be what you wanted to hear but it can be done by copying the Excel addresses into your Outlook contacts folder.
Make sure each of your Excel data columns has a heading such as name, address, phone ….
Excel can be made to export the file as a CSV format under the ‘Save as’ tab.Outlook can then be asked to Import this data
If your Contacts folder is full of other people start this process by creating a new Contacts2 folder to hold the contactsSelect File > Import and Export
In the wizard select import from another program or file
Select Comma Separated Values (Windows)
Browse for your created file
Select Contacts2 as your destination folder
Click on ‘Map Custom Fields’
![]() |
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
-
Windows 7 ISO /Windows 10 ISO
by
ECWS
5 hours, 48 minutes ago -
No HP software folders
by
fpefpe
6 hours, 33 minutes ago -
Which antivirus apps and VPNs are the most secure in 2025?
by
B. Livingston
1 hour, 37 minutes ago -
Stay connected anywhere
by
Peter Deegan
11 hours, 55 minutes ago -
Copilot, under the table
by
Will Fastie
3 hours, 8 minutes ago -
The Windows experience
by
Will Fastie
18 hours, 10 minutes ago -
A tale of two operating systems
by
Susan Bradley
9 hours, 6 minutes ago -
Microsoft : Resolving Blue Screen errors in Windows
by
Alex5723
23 hours, 29 minutes ago -
Where’s the cache today?
by
Up2you2
1 day, 14 hours ago -
Ascension says recent data breach affects over 430,000 patients
by
Nibbled To Death By Ducks
1 day, 7 hours ago -
Nintendo Switch 2 has a remote killing switch
by
Alex5723
7 hours, 55 minutes ago -
Blocking Search (on task bar) from going to web
by
HenryW
1 day, 15 hours ago -
Windows 10: Microsoft 365 Apps will be supported up to Oct. 10 2028
by
Alex5723
2 days, 8 hours ago -
Add or Remove “Ask Copilot” Context Menu in Windows 11 and 10
by
Alex5723
2 days, 8 hours ago -
regarding april update and may update
by
heybengbeng
2 days, 9 hours ago -
MS Passkey
by
pmruzicka
1 day, 11 hours ago -
Can’t make Opera my default browser
by
bmeacham
2 days, 17 hours ago -
*Some settings are managed by your organization
by
rlowe44
2 days, 4 hours ago -
Formatting of “Forward”ed e-mails
by
Scott Mills
2 days, 16 hours ago -
SmartSwitch PC Updates will only be supported through the MS Store Going Forward
by
PL1
3 days, 11 hours ago -
CISA warns of hackers targeting critical oil infrastructure
by
Nibbled To Death By Ducks
3 days, 20 hours ago -
AI slop
by
Susan Bradley
1 day, 14 hours ago -
Chrome : Using AI with Enhanced Protection mode
by
Alex5723
3 days, 22 hours ago -
Two blank icons
by
CR2
1 day, 6 hours ago -
Documents, Pictures, Desktop on OneDrive in Windows 11
by
ThePhoenix
1 day, 8 hours ago -
End of 10
by
Alex5723
4 days, 9 hours ago -
Single account cannot access printer’s automatic duplex functionality
by
Bruce
3 days, 7 hours ago -
test post
by
gtd12345
4 days, 15 hours ago -
Privacy and the Real ID
by
Susan Bradley
4 days, 5 hours ago -
MS-DEFCON 2: Deferring that upgrade
by
Susan Bradley
2 days, 8 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.