Register Free Newsletter Plus Membership
  • Home
    • Newsletters/Alerts
    • Forums
    • About
    • MS-DEFCON System
    • Master Patch List
    • Register
    • Login
Microsoft Patch Defense Condition level 4 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
  • WSJohnWilson

    WSJohnWilson

    @wsjohnwilson

    Forum Role: AskWoody Lounger

    Registered: 6 years, 1 month ago

    • Profile
    • Topics Started
    • Replies Created
    • Engagements
    • Favorites
    Viewing 15 replies - 1 through 15 (of 284 total)
    1 2 3 … 17 18 19
    Author
    Replies
    • WSJohnWilson
      AskWoody Lounger
      May 23, 2015 at 2:44 pm in reply to: PowerPoint 2003 macro? #1505876

      2003 doesn’ t have a ribbon and you will find it very hard to run from a keyboard shortcut in PowerPoint

      You will need to read this:
      http://www.pptfaq.com/FAQ00031_Create_an_ADD-IN_with_TOOLBARS_that_run_macros.htm

    • WSJohnWilson
      AskWoody Lounger
      March 17, 2015 at 8:08 am in reply to: Embedding a video in PowerPoint (2007) #1495643

      Hi there –

      Thanks for sticking with me on this.

      Did the custom animation, but that calls up the file externally, in Windows Movie Player, rather than playing it within the PPT.

      What a pain. 🙂

      Thanks again.

      PPT 2007 cannot embed video. This was introduced in v. 2010.
      2007 service pack 2 allows you to play (but not insert) embedded video.

    • WSJohnWilson
      AskWoody Lounger
      February 25, 2015 at 10:16 am in reply to: PowerPoint 2013: Record inking during slide show #1492368

      The suspended update (which broke RT versions) has now been fixed and reissued.

    • WSJohnWilson
      AskWoody Lounger
      February 13, 2015 at 7:34 am in reply to: PowerPoint 2013: Record inking during slide show #1489817

      Just for info. the required update (KB2920732) has been withdrawn because it totally killed PowerPoint in the RT version! Since this is obviously a serious problem my guess is it will soon be fixed.

    • WSJohnWilson
      AskWoody Lounger
      February 9, 2015 at 8:40 am in reply to: VBA code to change all boxes in SmartArt hierarchy chart graphic #1489119

      Hi John,

      2010

      I would say the easiet way is to treat the parent shape as a group.

      This should get you started (change the shape type if needed)

      Code:
      Sub S_Art()
      Dim oSA As SmartArt
      Dim oparent As Shape
      Dim i As Integer
      Dim s As Integer
      On Error Resume Next
      Err.Clear
      Set oSA = ActiveWindow.Selection.ShapeRange(1).SmartArt
      If Err  0 Then
      MsgBox “Error”
      Exit Sub ‘nothing selected or it’s not smart art
      End If
      Set oparent = oSA.Parent
      For i = 1 To oparent.GroupItems.Count
      ‘only target the shape type you want
      If oparent.GroupItems(i).AutoShapeType = msoShapeRectangle Then
      With oparent.GroupItems(i).Line
      .Visible = True
      .ForeColor.RGB = RGB(255, 0, 0)
      .Weight = 1
      End With
      End If
      Next i
      End Sub
    • WSJohnWilson
      AskWoody Lounger
      February 8, 2015 at 11:08 pm in reply to: VBA code to change all boxes in SmartArt hierarchy chart graphic #1489080

      You need to say which version you have. vba support for Smart Art is nearly non existant in version 2007 but better in 2010 on.

    • WSJohnWilson
      AskWoody Lounger
      October 30, 2014 at 5:46 pm in reply to: Title set in Master View but does not appear when shown in slide-show mode #1473124

      Placeholders on the master set the format and the text to be replaced but NOT the actual text in the show which needs to be set on individual slides.

    • WSJohnWilson
      AskWoody Lounger
      July 12, 2014 at 2:39 pm in reply to: Common shape for all presentations #1459353

      Try this (assumes version 2007 / 2010. There are slightly different steps for 2013)

      Open a Blank Presentation
      Add a rectangle and format it as desired
      Save As
      TYPE=Template *.potx
      Name= Blank

    • WSJohnWilson
      AskWoody Lounger
      July 3, 2014 at 11:40 am in reply to: How to automatically load template at start? #1458350

      It won’t but it will if you name it Blank.potx

    • WSJohnWilson
      AskWoody Lounger
      July 1, 2014 at 11:08 am in reply to: Adding custom table style to the default options (2007) #1458126

      Possible, but very complex XML skills are needed. We have produced a few for companies but it takes a few hours so not very cheap! There is no simple way.

    • WSJohnWilson
      AskWoody Lounger
      June 18, 2014 at 10:45 am in reply to: Playing two videos at the same time #1456943

      It might work if the projected show is playing in a window (not full screen). Otherwise you may need third party software eg PowerShow from OfficeOne to do this.

    • WSJohnWilson
      AskWoody Lounger
      June 4, 2014 at 4:21 am in reply to: List numbers bolded when I bold first word in that entry #1455396

      It’s pretty stupid but the only workaround I have found is to insert something invisible as the first letter and be care not to bold it.

      A zero width space will work from insert symbol. You could also just use a space but of course that will throw out the format.

      If you know how to use a macro this will do it for you

      Sub fixBold_Bullets()
      Dim L As Long
      Dim otr2 As TextRange2
      With ActiveWindow.Selection _
      .ShapeRange(1).TextFrame2.TextRange
      For L = .Paragraphs.Count To 1 Step -1
      Set otr2 = .Paragraphs(L).InsertBefore(ChrW(&H200B))
      otr2.Font.Bold = False
      Next L
      End With
      End Sub

    • WSJohnWilson
      AskWoody Lounger
      June 4, 2014 at 4:07 am in reply to: Balancing two columns of bulleted items (PPT 2013) #1455394

      Making the box shorter should work but I would use a two content layout (Home > Layouts) and paste eight items into the second placeholder.

    • WSJohnWilson
      AskWoody Lounger
      June 1, 2014 at 1:22 pm in reply to: Open slide VBA #1455073

      There is (probably) no need to do this.

      Eitehr just type the slide number on the keyboard and ENTER. The pres will jump to that slide or Right Click >> GoTo Slide

    • WSJohnWilson
      AskWoody Lounger
      April 21, 2014 at 4:30 am in reply to: How to have a numbered list continue across multiple slides #1449867

      There’s no way to auto link the numbers in PowerPoint.

      You can manually adjust the start number but that’s it.

    Viewing 15 replies - 1 through 15 (of 284 total)
    1 2 3 … 17 18 19
  • « Older Entries
DON'T MISS OUT!
Subscribe to the Free Newsletter
We promise not to spam you. Unsubscribe at any time.
Invalid email address
Thanks for subscribing!

Register
Lost your password?

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

Advanced Search

View the Forum

  • Recent Replies
  • My Replies
  • My Active Topics
  • New Posts in the Last day
  • Private Messages
  • Knowledge Base
  • How to use the Forums
  • All Forums
  • Search for Topics

    • Most popular topics
    • Topics with no replies
    • Recently active topics
    • New posts: Last day
    • New posts: Last three days
    • New posts: Last week
    • New posts: Last month
    • Topics with most replies
    • Latest topics

    Recent Topics

    • MS Excel 2019 Now Prompts to Back Up With OneDrive by lmacri
      2 hours, 43 minutes ago
    • Firefox 139 by Charlie
      1 hour, 59 minutes ago
    • Who knows what? by Will Fastie
      29 minutes ago
    • My top ten underappreciated features in Office by Peter Deegan
      20 minutes ago
    • WAU Manager — It’s your computer, you are in charge! by Deanna McElveen
      12 hours, 37 minutes ago
    • Misbehaving devices by Susan Bradley
      2 hours, 28 minutes ago
    • .NET 8.0 Desktop Runtime (v8.0.16) – Windows x86 Installer by WSmeyerbos
      1 day, 6 hours ago
    • Neowin poll : What do you plan to do on Windows 10 EOS by Alex5723
      1 hour, 37 minutes ago
    • May 31, 2025—KB5062170 (OS Builds 22621.5415 and 22631.5415 Out-of-band by Alex5723
      1 day, 4 hours ago
    • Discover the Best AI Tools for Everything by Alex5723
      4 hours, 3 minutes ago
    • Edge Seems To Be Gaining Weight by bbearren
      19 hours, 7 minutes ago
    • Rufus is available from the MSFT Store by PL1
      1 day, 3 hours ago
    • Microsoft : Ending USB-C® Port Confusion by Alex5723
      2 days, 6 hours ago
    • KB5061768 update for Intel vPro processor by drmark
      5 hours, 49 minutes ago
    • Outlook 365 classic has exhausted all shared resources by drmark
      4 hours, 32 minutes ago
    • My Simple Word 2010 Macro Is Not Working by mbennett555
      2 days, 1 hour ago
    • Office gets current release by Susan Bradley
      2 days, 4 hours ago
    • FBI: Still Using One of These Old Routers? It’s Vulnerable to Hackers by Alex5723
      3 days, 18 hours ago
    • Windows AI Local Only no NPU required! by RetiredGeek
      3 days, 2 hours ago
    • Stop the OneDrive defaults by CWBillow
      3 days, 19 hours ago
    • Windows 11 Insider Preview build 27868 released to Canary by joep517
      4 days, 5 hours ago
    • X Suspends Encrypted DMs by Alex5723
      4 days, 7 hours ago
    • WSJ : My Robot and Me AI generated movie by Alex5723
      4 days, 7 hours ago
    • Botnet hacks 9,000+ ASUS routers to add persistent SSH backdoor by Alex5723
      4 days, 8 hours ago
    • OpenAI model sabotages shutdown code by Cybertooth
      4 days, 8 hours ago
    • Backup and access old e-mails after company e-mail address is terminated by M W Leijendekker
      3 days, 21 hours ago
    • Enabling Secureboot by ITguy
      4 days, 4 hours ago
    • Windows hosting exposes additional bugs by Susan Bradley
      4 days, 16 hours ago
    • No more rounded corners?? by CWBillow
      4 days, 12 hours ago
    • Android 15 and IPV6 by Win7and10
      4 days, 2 hours ago

    Recent blog posts

    • Who knows what?
    • My top ten underappreciated features in Office
    • WAU Manager — It’s your computer, you are in charge!
    • Misbehaving devices
    • Office gets current release
    • Windows hosting exposes additional bugs
    • May preview updates
    • MS-DEFCON 4: As good as it gets

    My Profile

    Login and Registration

    • Log In
    • Register

    Key Links

    • > Computerworld's The Microsoft Patch Lady
    • > Computerworld's Woody on Windows
    • AskWoody Knowledge Base index
    • BlockaPatch tools
    • Gift subscription for Ask Woody Newsletter
    • Microsoft Answers Forum
    • Tasks for the Weekend YouTube Channel
    June 2025
    S M T W T F S
    1234567
    891011121314
    15161718192021
    22232425262728
    2930  
    « May    

    Remembering Woody

     

    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.