|
|
Browse by Tags
All Tags » .net » macro
-
I don't write many Outlook macros primarily because I don't have time to learn the CDO document model. But once upon a time I wrote a couple of macros that have become invaluable to me ever since.
Some background. I process my e-mail roughly like this: I use Outlook rules to filter out e-mail that is sent to most of ...
-
Here's another useful VS macro. When I write code there are always weird edge cases that I think of while so I like to liberally sprinkle // TODO: comments around. When you do this though you should always put in your alias and the date. That way someone who comes across your comment knows who to ask for further details, or ...
-
One of the most useful macros I ever wrote in VS was but a single line. All it does is insert a GUID at the current selection point. It was so useful I wrote it twice; once to insert lowercase and once to insert uppercase GUIDs. Here it is:Imports System
Imports EnvDTE
Imports EnvDTE80
Imports System.Diagnostics
Public ...
|
|
|