Previous Document Next Document
Application.VBE

Property VBE As Object

Member of Application

The VBE property returns a reference to the VBA Editor.

The VBE property returns a read-only value.

The following code example displays the editor type name in the Debug window of the VBA Editor in CorelDRAW.

Sub AppVBE() 
 Dim obj as Object 
 Set obj = Application.VBE 
 Debug.Print TypeName (obj) 
End Sub 

Previous Document Next Document Back to Top

Copyright 2007 Corel Corporation. All rights reserved.