Microsoft KB Archive/168927: Difference between revisions

From BetaArchive Wiki
(importing KB archive)
 
m (Text replacement - """ to """)
 
Line 61: Line 61:
The following macro never executes when a new workspace is created:
The following macro never executes when a new workspace is created:
<pre class="codesample">  sub Application_NewWorkspace()
<pre class="codesample">  sub Application_NewWorkspace()
       MsgBox(&quot;New Workspace&quot;)
       MsgBox("New Workspace")
   end sub
   end sub
                 </pre>
                 </pre>

Latest revision as of 11:03, 21 July 2020

Knowledge Base


FIX: Application_NewWorkspace Event Is Never Fired

Article ID: 168927

Article Last Modified on 10/17/2003



APPLIES TO

  • Microsoft Visual C++ 5.0 Enterprise Edition
  • Microsoft Visual C++ 5.0 Professional Edition



This article was previously published under Q168927

SYMPTOMS

The Developer Studio automation Application_NewWorkspace event is never fired.

STATUS

Microsoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. This problem was corrected in Microsoft Visual C++, version 6.0.

MORE INFORMATION

The following macro never executes when a new workspace is created:

   sub Application_NewWorkspace()
      MsgBox("New Workspace")
   end sub
                

Keywords: kbbug kbfix kbide kbvc600fix kbautomation KB168927