EnvironmentEvent macro doesn't complete - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T18:42:10Zhttp://stackoverflow.com/feeds/question/1050944http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1050944/environmentevent-macro-doesnt-complete1EnvironmentEvent macro doesn't completeSarah Vessels2009-06-26T19:52:44Z2009-07-09T22:19:46Z
<p>I'm working in Visual Studio 2008 and I would like for Edit > Outlining > Collapse to Definitions to be run whenever I open a file. It would be nice if, after that, all regions were expanded. I tried the code that Kyralessa offered in a comment on <a href="http://www.codinghorror.com/blog/archives/001147.html" rel="nofollow">The Problem with Code Folding</a>, and that works very nicely as a macro that I have to run manually. I tried to expand this macro to act as an event by placing the following code in the EnvironmentEvents module in the Macro IDE:</p>
<pre><code>Public Sub documentEvents_DocumentOpened(ByVal Document As EnvDTE.Document) Handles DocumentEvents.DocumentOpened
Document.DTE.ExecuteCommand("Edit.CollapsetoDefinitions")
DTE.SuppressUI = True
Dim objSelection As TextSelection = DTE.ActiveDocument.Selection
objSelection.StartOfDocument()
Do While objSelection.FindText("#region", vsFindOptions.vsFindOptionsMatchInHiddenText)
Loop
objSelection.StartOfDocument()
DTE.SuppressUI = False
End Sub
</code></pre>
<p>However, this does not seem to do anything when I open a file from my Solution in VS. To test that the macro was getting run, I put a <code>MsgBox()</code> statement in that subroutine and noticed that code before <code>Document.DTE.ExecuteCommand("Edit.CollapsetoDefinitions")</code> ran fine, but nothing seemed to get hit after that line. When I debugged and set a breakpoint within the subroutine, I would hit F10 to continue to the next line and control would leave the subroutine as soon as that <code>ExecuteCommand</code> line ran. Despite this, that line seems to do nothing, i.e. it doesn't collapse the outlining.</p>
<p>I also tried using just <code>DTE.ExecuteCommand("Edit.CollapsetoDefinitions")</code> within the subroutine but with no luck.</p>
<p>This question tries to obtain the same end result as <a href="http://stackoverflow.com/questions/293806/is-there-a-way-to-specify-outlining-defaults-in-visual-studio-so-that-a-file-open/">this one</a>, but I'm asking about what I might be doing wrong in my event-handling macro.</p>
http://stackoverflow.com/questions/1050944/environmentevent-macro-doesnt-complete/1106739#11067391Answer by Julien Poulin for EnvironmentEvent macro doesn't completeJulien Poulin2009-07-09T22:19:46Z2009-07-09T22:19:46Z<p>The problem is that the document is not really active when the event fires. One solution is to use a "fire once" timer to execute the code a short delay after the DocumentOpened event occured:</p>
<pre><code>Dim DocumentOpenedTimer As Timer
Private Sub DocumentEvents_DocumentOpened(ByVal Document As EnvDTE.Document) Handles DocumentEvents.DocumentOpened
DocumentOpenedTimer = New Timer(AddressOf ExpandRegionsCallBack, Nothing, 200, Timeout.Infinite)
End Sub
Private Sub ExpandRegionsCallBack(ByVal state As Object)
ExpandRegions()
DocumentOpenedTimer.Dispose()
End Sub
Public Sub ExpandRegions()
Dim Document As EnvDTE.Document = DTE.ActiveDocument
If (Document.FullName.EndsWith(".vb") OrElse Document.FullName.EndsWith(".cs")) Then
If Not DTE.ActiveWindow.Caption.ToUpperInvariant.Contains("design".ToUpperInvariant) Then
Document.DTE.SuppressUI = True
Document.DTE.ExecuteCommand("Edit.CollapsetoDefinitions")
Dim objSelection As TextSelection = Document.Selection
objSelection.StartOfDocument()
Do While objSelection.FindText("#region", vsFindOptions.vsFindOptionsMatchInHiddenText)
Loop
objSelection.StartOfDocument()
Document.DTE.SuppressUI = False
End If
End If
End Sub
</code></pre>
<p>I haven't tested it extensively, so there might be some bugs... Also, I added a check to verify that the active document is a C# or VB source code (not tested with VB though) and that it's not in design mode.<br />
Anyway, hope it works for you...</p>