home *** CD-ROM | disk | FTP | other *** search
- Attribute VB_Name = "modAppEnv"
- '******************************************************************'
- '* *'
- '* TurboCAD for Windows *'
- '* Copyright (c) 1993 - 2001 *'
- '* International Microcomputer Software, Inc. *'
- '* (IMSI) *'
- '* All rights reserved. *'
- '* *'
- '******************************************************************'
-
- Option Explicit
-
- Public Sub AppEnvRegenMethodEx1()
- Dim rm As RegenMethod
- For Each rm In Application.RegenMethods
- Debug.Print "RegenMethod: " & rm.Name
- Next
- End Sub
-
- Public Sub AppEnvFilterEx1()
- Dim flt As Filter
- For Each flt In Application.Filters
- Debug.Print "Filter: " & flt.Name & ", " & flt.Extension & ", " & flt.Description
- Next
- End Sub
-
- 'Public Sub AppEnvToolEx1()
- ' Dim t As Tool
- ' For Each t In Application.Tools
- ' Debug.Print "Tool: " & t.CommandName
- ' Next
- 'End Sub
-
- Public Sub AppEnvMacroEx1()
- Dim mac As Macro
- For Each mac In ActiveDrawing.Macros
- Debug.Print "VBA Project: " & mac.Name & ", contained in " & mac.Path
- Next
- End Sub
-
-
-