-
WSTroyWells
AskWoody LoungerJuly 6, 2001 at 10:55 am in reply to: Inserting a flag into rtf with vba (VBA for Word 97/2000) #532070The problem with bookmarks is you can only assign them to one location. What I didn’t mention before is that I want to be able to use the same flag for different locations.
I could use a character style (and probably I will at first), but that will be a problem if the text already contains a character style.
Thanks again!!
Troy -
WSTroyWells
AskWoody LoungerThis worked great. Thanks!!
You mentioned an Office VBA class. What do you mean by this and how can I find them?
Thanks!!
Troy -
WSTroyWells
AskWoody LoungerSorry I took so long to get back with you, but just wanted to say thanks!! This worked perfectly for me.
Troy
-
WSTroyWells
AskWoody LoungerThanks for the help!! What you gave me, plus a little tweaking of my own, allowed me to search for and format the tables as I wanted to.
Just wanted to let you know I have received high praise from my manager (and even a couple of movie tickets) for the work I am doing on these macros. I gave you credit by name for your part in this. I guess I say all that to say you are doing a super job, and I really appreciate it. The series of macros I have developed with your help will save us literally hundreds, if not thousands, of hours of work.
Thanks again!!
Troy -
WSTroyWells
AskWoody LoungerPerhaps I was wrong in the terms I used. By “inline graphic” I meant a graphic sitting on a line in a paragraph (with “float over text” DISabled).
However, I found a work around using a series of searches/replaces.
After finding the work around, I found that my requirements had changed and I no longer need to differentiate between graphics on the first line and those on the second and following.
Thanks any way for the help!!!
Troy -
WSTroyWells
AskWoody LoungerI really appreciate your efforts in helping me restart number. The macro you sent worked great, except it ran unbareably slow. So I tried your first suggetion (about making my “Step” style start at level 2. After I read this suggestion, I had a “DUHH” moment as I grasped the intelligence and simplicity of this solution.
I have been able to implement this with one small exception: The only way to set up this style in a way that it does not revert was to do it in a macro. If I try set it manually in the Styles dialog box, by the time I hit my last OK, my “Step” style is tied once again to level 1.
As I said, I was successful at implementing this via a macro, but if I ever have to go into the bullets and numbering dialog (say to continue numbering in the rare cases where my level 1 style precedes the step style in the MIDDLE of a list) I find that it reverts, but can still “customize” the numbering to start at # (where # is the number at which my list should continue). This is not a major problem in this instance, but I would love to be able to get around it so I can use this same method in other, more widely used, templates.
I have printed my macro text below (you will notice that “Step” is actually linked to level 3 because I knew that in some cases I would have several lists in a row without a “Normal” style paragraph in between, so I put another style at level 2 as another means for restarting it):
Sub UDRestartNumbering()
‘
‘ UDRestartNumbering Macro
‘ Macro created 04/19/01 by Troy Wells
‘
With ActiveDocument.Styles(“Step”)
.AutomaticallyUpdate = False
.BaseStyle = “”
.NextParagraphStyle = “Step”
End With
With ListGalleries(wdOutlineNumberGallery).ListTemplates(7).ListLevels(1)
.NumberFormat = “”
.TrailingCharacter = wdTrailingNone
.NumberStyle = wdListNumberStyleNone
.NumberPosition = 0
.Alignment = wdListLevelAlignLeft
.TextPosition = 0
.TabPosition = wdUndefined
.ResetOnHigher = True
.StartAt = 1
With .Font
.Bold = False
.Italic = False
.StrikeThrough = wdUndefined
.Subscript = wdUndefined
.Superscript = wdUndefined
.Shadow = wdUndefined
.Outline = wdUndefined
.Emboss = wdUndefined
.Engrave = wdUndefined
.AllCaps = wdUndefined
.Hidden = wdUndefined
.Underline = wdUndefined
.ColorIndex = wdBlack
.Size = 11
.Animation = wdUndefined
.DoubleStrikeThrough = wdUndefined
.Name = “Times New Roman”
End With
.LinkedStyle = “Normal”
End With
With ListGalleries(wdOutlineNumberGallery).ListTemplates(7).ListLevels(2)
.NumberFormat = “”
.TrailingCharacter = wdTrailingNone
.NumberStyle = wdListNumberStyleNone
.NumberPosition = 0
.Alignment = wdListLevelAlignLeft
.TextPosition = 0
.TabPosition = wdUndefined
.ResetOnHigher = True
.StartAt = 1
With .Font
.Bold = False
.Italic = False
.StrikeThrough = wdUndefined
.Subscript = wdUndefined
.Superscript = wdUndefined
.Shadow = wdUndefined
.Outline = wdUndefined
.Emboss = wdUndefined
.Engrave = wdUndefined
.AllCaps = wdUndefined
.Hidden = wdUndefined
.Underline = wdUndefined
.ColorIndex = wdUndefined
.Size = 11
.Animation = wdUndefined
.DoubleStrikeThrough = wdUndefined
.Name = “Times New Roman”
End With
.LinkedStyle = “Procedure Head”
End With
With ListGalleries(wdOutlineNumberGallery).ListTemplates(7).ListLevels(3)
.NumberFormat = “%3.”
.TrailingCharacter = wdTrailingTab
.NumberStyle = wdListNumberStyleArabic
.NumberPosition = 0
.Alignment = wdListLevelAlignLeft
.TextPosition = 18
.TabPosition = 18
.ResetOnHigher = True
.StartAt = 1
With .Font
.Bold = False
.Italic = False
.StrikeThrough = wdUndefined
.Subscript = wdUndefined
.Superscript = wdUndefined
.Shadow = wdUndefined
.Outline = wdUndefined
.Emboss = wdUndefined
.Engrave = wdUndefined
.AllCaps = wdUndefined
.Hidden = wdUndefined
.Underline = wdUndefined
.ColorIndex = wdUndefined
.Size = 11
.Animation = wdUndefined
.DoubleStrikeThrough = wdUndefined
.Name = “Times New Roman”
End With
.LinkedStyle = “Step”
End With
With ListGalleries(wdOutlineNumberGallery).ListTemplates(7).ListLevels(4)
.NumberFormat = “%4.”
.TrailingCharacter = wdTrailingTab
.NumberStyle = wdListNumberStyleLowercaseLetter
.NumberPosition = 18
.Alignment = wdListLevelAlignLeft
.TextPosition = 30
.TabPosition = 36
.ResetOnHigher = True
.StartAt = 1
With .Font
.Bold = False
.Italic = False
.StrikeThrough = wdUndefined
.Subscript = wdUndefined
.Superscript = wdUndefined
.Shadow = wdUndefined
.Outline = wdUndefined
.Emboss = wdUndefined
.Engrave = wdUndefined
.AllCaps = wdUndefined
.Hidden = wdUndefined
.Underline = wdUndefined
.ColorIndex = wdUndefined
.Size = 11
.Animation = wdUndefined
.DoubleStrikeThrough = wdUndefined
.Name = “Times New Roman”
End With
.LinkedStyle = “”
End With
With ListGalleries(wdOutlineNumberGallery).ListTemplates(7).ListLevels(5)
.NumberFormat = “%5)”
.TrailingCharacter = wdTrailingTab
.NumberStyle = wdListNumberStyleArabic
.NumberPosition = 30
.Alignment = wdListLevelAlignLeft
.TextPosition = 42
.TabPosition = 48
.ResetOnHigher = True
.StartAt = 1
With .Font
.Bold = False
.Italic = False
.StrikeThrough = wdUndefined
.Subscript = wdUndefined
.Superscript = wdUndefined
.Shadow = wdUndefined
.Outline = wdUndefined
.Emboss = wdUndefined
.Engrave = wdUndefined
.AllCaps = wdUndefined
.Hidden = wdUndefined
.Underline = wdUndefined
.ColorIndex = wdUndefined
.Size = 11
.Animation = wdUndefined
.DoubleStrikeThrough = wdUndefined
.Name = “Times New Roman”
End With
.LinkedStyle = “”
End With
With ListGalleries(wdOutlineNumberGallery).ListTemplates(7).ListLevels(6)
.NumberFormat = “%6)”
.TrailingCharacter = wdTrailingTab
.NumberStyle = wdListNumberStyleLowercaseLetter
.NumberPosition = 42
.Alignment = wdListLevelAlignLeft
.TextPosition = 56.4
.TabPosition = 60
.ResetOnHigher = True
.StartAt = 1
With .Font
.Bold = False
.Italic = False
.StrikeThrough = wdUndefined
.Subscript = wdUndefined
.Superscript = wdUndefined
.Shadow = wdUndefined
.Outline = wdUndefined
.Emboss = wdUndefined
.Engrave = wdUndefined
.AllCaps = wdUndefined
.Hidden = wdUndefined
.Underline = wdUndefined
.ColorIndex = wdUndefined
.Size = 11
.Animation = wdUndefined
.DoubleStrikeThrough = wdUndefined
.Name = “Times New Roman”
End With
.LinkedStyle = “”
End With
With ListGalleries(wdOutlineNumberGallery).ListTemplates(7).ListLevels(7)
.NumberFormat = “(%7)”
.TrailingCharacter = wdTrailingTab
.NumberStyle = wdListNumberStyleArabic
.NumberPosition = 56.4
.Alignment = wdListLevelAlignLeft
.TextPosition = 74.4
.TabPosition = 74.4
.ResetOnHigher = True
.StartAt = 1
With .Font
.Bold = False
.Italic = False
.StrikeThrough = wdUndefined
.Subscript = wdUndefined
.Superscript = wdUndefined
.Shadow = wdUndefined
.Outline = wdUndefined
.Emboss = wdUndefined
.Engrave = wdUndefined
.AllCaps = wdUndefined
.Hidden = wdUndefined
.Underline = wdUndefined
.ColorIndex = wdUndefined
.Size = 11
.Animation = wdUndefined
.DoubleStrikeThrough = wdUndefined
.Name = “Times New Roman”
End With
.LinkedStyle = “”
End With
With ListGalleries(wdOutlineNumberGallery).ListTemplates(7).ListLevels(8)
.NumberFormat = “”
.TrailingCharacter = wdTrailingTab
.NumberStyle = wdListNumberStyleNone
.NumberPosition = 0
.Alignment = wdListLevelAlignLeft
.TextPosition = 0
.TabPosition = 18
.ResetOnHigher = True
.StartAt = 0
With .Font
.Bold = wdUndefined
.Italic = wdUndefined
.StrikeThrough = wdUndefined
.Subscript = wdUndefined
.Superscript = wdUndefined
.Shadow = wdUndefined
.Outline = wdUndefined
.Emboss = wdUndefined
.Engrave = wdUndefined
.AllCaps = wdUndefined
.Hidden = wdUndefined
.Underline = wdUndefined
.ColorIndex = wdUndefined
.Size = wdUndefined
.Animation = wdUndefined
.DoubleStrikeThrough = wdUndefined
.Name = “Times New Roman”
End With
.LinkedStyle = “”
End With
With ListGalleries(wdOutlineNumberGallery).ListTemplates(7).ListLevels(9)
.NumberFormat = “”
.TrailingCharacter = wdTrailingTab
.NumberStyle = wdListNumberStyleNone
.NumberPosition = 0
.Alignment = wdListLevelAlignLeft
.TextPosition = 0
.TabPosition = 18
.ResetOnHigher = True
.StartAt = 0
With .Font
.Bold = wdUndefined
.Italic = wdUndefined
.StrikeThrough = wdUndefined
.Subscript = wdUndefined
.Superscript = wdUndefined
.Shadow = wdUndefined
.Outline = wdUndefined
.Emboss = wdUndefined
.Engrave = wdUndefined
.AllCaps = wdUndefined
.Hidden = wdUndefined
.Underline = wdUndefined
.ColorIndex = wdUndefined
.Size = wdUndefined
.Animation = wdUndefined
.DoubleStrikeThrough = wdUndefined
.Name = “Times New Roman”
End With
.LinkedStyle = “”
End With
ActiveDocument.Styles(“Step”).LinkToListTemplate ListTemplate:= _
ListGalleries(wdOutlineNumberGallery).ListTemplates(7), ListLevelNumber:= _
3
Selection.Style = ActiveDocument.Styles(“Step”)
End SubIf you can help with this reversion problem, great (I wouldn’t be surprised if it were just a MS bug
), but you have already been a great help!!
Thanks again!!
Troy -
WSTroyWells
AskWoody LoungerSorry I keep leaving out important information. The macro I created was to restart numbering. As I’m sure you know, numbering continues by default from list to list and must be restarted each time. While it is certainly possible to run this macro for each list (which is what we do currently), it would nice, especially in cases where we are not creating from scratch, to search for these blocks (which could be anywhere from 2 to 20 paragraphs each), select them, and restart the numbering all at once. I’ve included my current (lengthy though it may be due to the style containing multi-level numbering) macro below:
With ListGalleries(wdOutlineNumberGallery).ListTemplates(2).ListLevels(1)
.NumberFormat = “%1.”
.TrailingCharacter = wdTrailingTab
.NumberStyle = wdListNumberStyleArabic
.NumberPosition = 0
.Alignment = wdListLevelAlignLeft
.TextPosition = 18
.TabPosition = 18
.ResetOnHigher = True
.StartAt = 1
With .Font
.Bold = False
.Italic = False
.StrikeThrough = wdUndefined
.Subscript = wdUndefined
.Superscript = wdUndefined
.Shadow = wdUndefined
.Outline = wdUndefined
.Emboss = wdUndefined
.Engrave = wdUndefined
.AllCaps = wdUndefined
.Hidden = wdUndefined
.Underline = wdUndefined
.ColorIndex = wdBlack
.Size = 11
.Animation = wdUndefined
.DoubleStrikeThrough = wdUndefined
.Name = “Times New Roman”
End With
.LinkedStyle = “Step”
End With
With ListGalleries(wdOutlineNumberGallery).ListTemplates(2).ListLevels(2)
.NumberFormat = “%2.”
.TrailingCharacter = wdTrailingTab
.NumberStyle = wdListNumberStyleLowercaseLetter
.NumberPosition = 18
.Alignment = wdListLevelAlignLeft
.TextPosition = 30
.TabPosition = 36
.ResetOnHigher = True
.StartAt = 1
With .Font
.Bold = False
.Italic = False
.StrikeThrough = wdUndefined
.Subscript = wdUndefined
.Superscript = wdUndefined
.Shadow = wdUndefined
.Outline = wdUndefined
.Emboss = wdUndefined
.Engrave = wdUndefined
.AllCaps = wdUndefined
.Hidden = wdUndefined
.Underline = wdUndefined
.ColorIndex = wdUndefined
.Size = 11
.Animation = wdUndefined
.DoubleStrikeThrough = wdUndefined
.Name = “Times New Roman”
End With
.LinkedStyle = “”
End With
With ListGalleries(wdOutlineNumberGallery).ListTemplates(2).ListLevels(3)
.NumberFormat = “%3)”
.TrailingCharacter = wdTrailingTab
.NumberStyle = wdListNumberStyleArabic
.NumberPosition = 30
.Alignment = wdListLevelAlignLeft
.TextPosition = 42
.TabPosition = 48
.ResetOnHigher = True
.StartAt = 1
With .Font
.Bold = wdUndefined
.Italic = wdUndefined
.StrikeThrough = wdUndefined
.Subscript = wdUndefined
.Superscript = wdUndefined
.Shadow = wdUndefined
.Outline = wdUndefined
.Emboss = wdUndefined
.Engrave = wdUndefined
.AllCaps = wdUndefined
.Hidden = wdUndefined
.Underline = wdUndefined
.ColorIndex = wdUndefined
.Size = wdUndefined
.Animation = wdUndefined
.DoubleStrikeThrough = wdUndefined
.Name = “Tms Rmn”
End With
.LinkedStyle = “”
End With
With ListGalleries(wdOutlineNumberGallery).ListTemplates(2).ListLevels(4)
.NumberFormat = “%4)”
.TrailingCharacter = wdTrailingTab
.NumberStyle = wdListNumberStyleLowercaseLetter
.NumberPosition = 57
.Alignment = wdListLevelAlignLeft
.TextPosition = 71.4
.TabPosition = 75
.ResetOnHigher = True
.StartAt = 1
With .Font
.Bold = wdUndefined
.Italic = wdUndefined
.StrikeThrough = wdUndefined
.Subscript = wdUndefined
.Superscript = wdUndefined
.Shadow = wdUndefined
.Outline = wdUndefined
.Emboss = wdUndefined
.Engrave = wdUndefined
.AllCaps = wdUndefined
.Hidden = wdUndefined
.Underline = wdUndefined
.ColorIndex = wdUndefined
.Size = wdUndefined
.Animation = wdUndefined
.DoubleStrikeThrough = wdUndefined
.Name = “Tms Rmn”
End With
.LinkedStyle = “”
End With
With ListGalleries(wdOutlineNumberGallery).ListTemplates(2).ListLevels(5)
.NumberFormat = “(%5)”
.TrailingCharacter = wdTrailingTab
.NumberStyle = wdListNumberStyleArabic
.NumberPosition = 71.4
.Alignment = wdListLevelAlignLeft
.TextPosition = 89.4
.TabPosition = 89.4
.ResetOnHigher = True
.StartAt = 1
With .Font
.Bold = wdUndefined
.Italic = wdUndefined
.StrikeThrough = wdUndefined
.Subscript = wdUndefined
.Superscript = wdUndefined
.Shadow = wdUndefined
.Outline = wdUndefined
.Emboss = wdUndefined
.Engrave = wdUndefined
.AllCaps = wdUndefined
.Hidden = wdUndefined
.Underline = wdUndefined
.ColorIndex = wdUndefined
.Size = wdUndefined
.Animation = wdUndefined
.DoubleStrikeThrough = wdUndefined
.Name = “Tms Rmn”
End With
.LinkedStyle = “”
End With
With ListGalleries(wdOutlineNumberGallery).ListTemplates(2).ListLevels(6)
.NumberFormat = “”
.TrailingCharacter = wdTrailingTab
.NumberStyle = wdListNumberStyleNone
.NumberPosition = 0
.Alignment = wdListLevelAlignLeft
.TextPosition = 0
.TabPosition = 18
.ResetOnHigher = True
.StartAt = 0
With .Font
.Bold = wdUndefined
.Italic = wdUndefined
.StrikeThrough = wdUndefined
.Subscript = wdUndefined
.Superscript = wdUndefined
.Shadow = wdUndefined
.Outline = wdUndefined
.Emboss = wdUndefined
.Engrave = wdUndefined
.AllCaps = wdUndefined
.Hidden = wdUndefined
.Underline = wdUndefined
.ColorIndex = wdUndefined
.Size = wdUndefined
.Animation = wdUndefined
.DoubleStrikeThrough = wdUndefined
.Name = “Tms Rmn”
End With
.LinkedStyle = “”
End With
With ListGalleries(wdOutlineNumberGallery).ListTemplates(2).ListLevels(7)
.NumberFormat = “”
.TrailingCharacter = wdTrailingTab
.NumberStyle = wdListNumberStyleNone
.NumberPosition = 0
.Alignment = wdListLevelAlignLeft
.TextPosition = 0
.TabPosition = 18
.ResetOnHigher = True
.StartAt = 0
With .Font
.Bold = wdUndefined
.Italic = wdUndefined
.StrikeThrough = wdUndefined
.Subscript = wdUndefined
.Superscript = wdUndefined
.Shadow = wdUndefined
.Outline = wdUndefined
.Emboss = wdUndefined
.Engrave = wdUndefined
.AllCaps = wdUndefined
.Hidden = wdUndefined
.Underline = wdUndefined
.ColorIndex = wdUndefined
.Size = wdUndefined
.Animation = wdUndefined
.DoubleStrikeThrough = wdUndefined
.Name = “Tms Rmn”
End With
.LinkedStyle = “”
End With
With ListGalleries(wdOutlineNumberGallery).ListTemplates(2).ListLevels(8)
.NumberFormat = “”
.TrailingCharacter = wdTrailingTab
.NumberStyle = wdListNumberStyleNone
.NumberPosition = 0
.Alignment = wdListLevelAlignLeft
.TextPosition = 0
.TabPosition = 18
.ResetOnHigher = True
.StartAt = 0
With .Font
.Bold = wdUndefined
.Italic = wdUndefined
.StrikeThrough = wdUndefined
.Subscript = wdUndefined
.Superscript = wdUndefined
.Shadow = wdUndefined
.Outline = wdUndefined
.Emboss = wdUndefined
.Engrave = wdUndefined
.AllCaps = wdUndefined
.Hidden = wdUndefined
.Underline = wdUndefined
.ColorIndex = wdUndefined
.Size = wdUndefined
.Animation = wdUndefined
.DoubleStrikeThrough = wdUndefined
.Name = “Tms Rmn”
End With
.LinkedStyle = “”
End With
With ListGalleries(wdOutlineNumberGallery).ListTemplates(2).ListLevels(9)
.NumberFormat = “”
.TrailingCharacter = wdTrailingTab
.NumberStyle = wdListNumberStyleNone
.NumberPosition = 0
.Alignment = wdListLevelAlignLeft
.TextPosition = 0
.TabPosition = 18
.ResetOnHigher = True
.StartAt = 0
With .Font
.Bold = wdUndefined
.Italic = wdUndefined
.StrikeThrough = wdUndefined
.Subscript = wdUndefined
.Superscript = wdUndefined
.Shadow = wdUndefined
.Outline = wdUndefined
.Emboss = wdUndefined
.Engrave = wdUndefined
.AllCaps = wdUndefined
.Hidden = wdUndefined
.Underline = wdUndefined
.ColorIndex = wdUndefined
.Size = wdUndefined
.Animation = wdUndefined
.DoubleStrikeThrough = wdUndefined
.Name = “Tms Rmn”
End With
.LinkedStyle = “”
End With
ListGalleries(wdOutlineNumberGallery).ListTemplates(2).Name = “”
Selection.Range.ListFormat.ApplyListTemplate ListTemplate:=ListGalleries( _
wdOutlineNumberGallery).ListTemplates(2), ContinuePreviousList:=False, _
ApplyTo:=wdListApplyToWholeList
End SubIf you can improve on this macro feel free, but my main desire is to be able to search for and select a block of text which will already have the same style, so I can run this (or some other) macro to restart the numbering.
Thanks again!!
Troy -
WSTroyWells
AskWoody LoungerThat did the trick. Thank you so much for your help!!
Troy
-
WSTroyWells
AskWoody LoungerIt would be Case A: (I want the paragraphs with Left indent of 18pts to get changed to one particular style, and I want the paragraphs with other indenting to get changed to a second particular style).
Thanks!!
P.S. The whole reason for this macro is to apply styles so I don’t need a macro in the future. Unfortunately, I cannot add styles in these particular HTML help files ahead of time. -
WSTroyWells
AskWoody LoungerEdited by TroyWells on 01/04/17 23:59.
Gary, YOU MADE MY DAY!!!!!!!
This worked perfectly.
EXCEPT…
After running this I realized I needed one more IF statement. I am not a VB programmer and could not figure out how to add this particular IF statement.On most lines for the bulleted lists, if on the Format menu, I click Paragraph, the Left Indent is 18 pt, and the same with the numbered list. There are some exceptions for a second level of bullets and a second level of numbering.
If you can get me started with how to put this particular IF statement into the macro you sent, I can take it from there. I think I am mainly hung up on the syntax of this particular property.
Thanks again!!
Troy
![]() |
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
-
My 3 monitors go black & then the Taskbar is moved to center monitor
by
saturn2233
8 hours, 19 minutes ago -
Apple backports fixes
by
Susan Bradley
8 hours, 27 minutes ago -
Win 11 24H2 will not install
by
Michael1950
8 hours, 32 minutes ago -
Advice to convert MBR to GPT and install Windows 11 Pro on unsupported PC
by
Andy M
8 hours, 3 minutes ago -
Photos from iPhone to Win 10 duplicating/reformatting to .mov
by
J9438
10 hours, 11 minutes ago -
Thunderbird in trouble. Here comes Thundermail
by
Alex5723
8 hours, 20 minutes ago -
Get back ” Open With” in context menus
by
CWBillow
21 hours, 13 minutes ago -
Many AMD Ryzen 9800X3D on ASRock have died
by
Alex5723
1 day, 1 hour ago -
simple general stupid question
by
WSaltamirano
19 hours ago -
April 2025 Office non-Security updates
by
PKCano
1 day, 12 hours ago -
Microsoft wants to hear from you
by
Will Fastie
12 hours, 6 minutes ago -
Windows 11 Insider Preview Build 22635.5160 (23H2) released to BETA
by
joep517
1 day, 15 hours ago -
Europe Seeks Alternatives to U.S. Cloud Providers
by
Alex5723
1 day, 21 hours ago -
Test post
by
Susan Bradley
1 day, 23 hours ago -
Used Systems to delete Temp files Gone WRONG what does this mean?
by
Deo
2 days, 1 hour ago -
SSD shuts down on its own
by
CWBillow
1 day, 16 hours ago -
OneDrive File Sharing Changes
by
David Clark
2 days, 9 hours ago -
OneDrive File Sharing Changes
by
David Clark
2 days, 11 hours ago -
Win 10 Pro 22H2 to Win 11 Pro 23H2 Conversion Guide
by
doneager
1 day, 11 hours ago -
Today is world backup day
by
Alex5723
2 days, 2 hours ago -
Windows .exe on Mint
by
Slowpoke47
7 hours, 46 minutes ago -
Reviewing your licensing options
by
Susan Bradley
8 hours, 40 minutes ago -
Apple has been analyzing your photos since September 2024
by
B. Livingston
1 day, 7 hours ago -
What Windows 11 24H2 offers beyond bugs
by
Lance Whitney
1 day, 3 hours ago -
Making sense of Settings in Windows 11
by
Simon Bisson
1 day, 5 hours ago -
Windows 11 pro fails to log in after upgrading Win 10 pro to Win 11 pro 24h2
by
ben_sitaud
2 days, 8 hours ago -
23H2 / 24H2 / Local v. Microsoft Account.
by
CWBillow
2 days, 6 hours ago -
YouTube Ad Blocker Blocker
by
bbearren
2 days, 6 hours ago -
Obscure historical facts about Windows
by
Cybertooth
2 days, 8 hours ago -
Microsoft Backup
by
Linda2019
2 days 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.