home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin {C62A69F0-16DC-11CE-9E98-00AA00574A4F} frmSelInfo
- Caption = "Extended Selection Information"
- ClientHeight = 3765
- ClientLeft = 48
- ClientTop = 336
- ClientWidth = 8424
- OleObjectBlob = "frmSelInfo.frx":0000
- StartUpPosition = 1 'CenterOwner
- Attribute VB_Name = "frmSelInfo"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- '******************************************************************'
- '* *'
- '* TurboCAD for Windows *'
- '* Copyright (c) 1993 - 2001 *'
- '* International Microcomputer Software, Inc. *'
- '* (IMSI) *'
- '* All rights reserved. *'
- '* *'
- '******************************************************************'
- Option Explicit
- Private Sub btnCleanUp_Click()
- On Error Resume Next
- ClearInfoLayer
- End Sub
- Private Sub btnDrawVerts_Click()
- On Error Resume Next
- ClearInfoLayer
- DrawVertices chkAll.Value
- End Sub
- Private Sub btnDump_Click()
- On Error Resume Next
- PrintInfoToFile Trim(txtFilename.Text), chkAll.Value
- End Sub
- Private Sub btnGetInfo_Click()
- On Error Resume Next
- AddDrawingNodes tvwResults.Nodes, chkAll.Value
- End Sub
-