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

    WSJohnWilson

    @wsjohnwilson

    Forum Role: AskWoody Lounger

    Registered: 6 years 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

    • Documents, Pictures, Desktop on OneDrive in Windows 11 by ThePhoenix
      2 hours, 24 minutes ago
    • End of 10 by Alex5723
      5 hours, 4 minutes ago
    • End Of 10 : Move to Linux by Alex5723
      5 hours, 34 minutes ago
    • Single account cannot access printer’s automatic duplex functionality by Bruce
      2 hours, 2 minutes ago
    • test post by gtd12345
      11 hours, 5 minutes ago
    • Privacy and the Real ID by Susan Bradley
      1 hour, 13 minutes ago
    • MS-DEFCON 2: Deferring that upgrade by Susan Bradley
      2 hours, 2 minutes ago
    • Cant log on to oldergeeks.Com by WSJonharnew
      15 hours, 27 minutes ago
    • Upgrading from Win 10 by WSjcgc50
      2 hours, 51 minutes ago
    • USB webcam / microphone missing after KB5050009 update by WSlloydkuhnle
      10 hours, 32 minutes ago
    • TeleMessage, a modified Signal clone used by US government has been hacked by Alex5723
      1 day, 7 hours ago
    • The story of Windows Longhorn by Cybertooth
      18 hours, 50 minutes ago
    • Red x next to folder on OneDrive iPadOS by dmt_3904
      1 day, 9 hours ago
    • Are manuals extinct? by Susan Bradley
      5 hours, 20 minutes ago
    • Canonical ditching Sudo for Rust Sudo -rs starting with Ubuntu by Alex5723
      1 day, 18 hours ago
    • Network Issue by Casey H
      1 day, 5 hours ago
    • Fedora Linux is now an official WSL distro by Alex5723
      2 days, 6 hours ago
    • May 2025 Office non-Security updates by PKCano
      2 days, 6 hours ago
    • Windows 10 filehistory including onedrive folder by Steve Bondy
      2 days, 8 hours ago
    • pages print on restart (Win 11 23H2) by cyraxote
      1 day, 9 hours ago
    • Windows 11 Insider Preview build 26200.5581 released to DEV by joep517
      2 days, 10 hours ago
    • Windows 11 Insider Preview build 26120.3950 (24H2) released to BETA by joep517
      2 days, 10 hours ago
    • Proton to drop prices after ruling against “Apple tax” by Cybertooth
      2 days, 18 hours ago
    • 24H2 Installer – don’t see Option for non destructive install by JP
      1 day, 10 hours ago
    • Asking Again here (New User and Fast change only backups) by thymej
      3 days, 5 hours ago
    • How much I spent on the Mac mini by Will Fastie
      12 hours, 54 minutes ago
    • How to get rid of Copilot in Microsoft 365 by Lance Whitney
      1 day, 8 hours ago
    • Spring cleanup — 2025 by Deanna McElveen
      3 days, 11 hours ago
    • Setting up Windows 11 by Susan Bradley
      2 days, 6 hours ago
    • VLC Introduces Cutting-Edge AI Subtitling and Translation Capabilities by Alex5723
      3 days, 6 hours ago

    Recent blog posts

    • Privacy and the Real ID
    • MS-DEFCON 2: Deferring that upgrade
    • Are manuals extinct?
    • May 2025 Office non-Security updates
    • How much I spent on the Mac mini
    • How to get rid of Copilot in Microsoft 365
    • Spring cleanup — 2025
    • Setting up Windows 11

    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
    May 2025
    S M T W T F S
     123
    45678910
    11121314151617
    18192021222324
    25262728293031
    « Apr    

    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.