Monday, January 11, 2016

MS Word macro for strikethrough of BOTH selection AND its attached comments

Sub StrikeThroughSel()
    CurrSel = Selection
    Selection.Font.StrikeThrough = wdToggle
    If Selection.Comments.Count > 0 Then
        Selection.Comments(1).Range.Select
        Selection.Font.StrikeThrough = wdToggle
    End If
    ActiveWindow.ActivePane.Close
    ActiveWindow.View.Type = wdPrintView
End Sub

Thursday, December 20, 2007

Solving *GNARLY* problems

I recently ran into this superb article on Joel on Software:

http://joelonsoftware.com/items/2007/12/06.html

It shows how solving gnarly and uninteresting problems can often give you an edge over your competitors in the software realm. Getting to learn Emacs is one such gnarly problem. But once you are over that learning curve you can of course head towards your world domination agenda :D


Powered by ScribeFire.