home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmBoltNut
- Caption = "Bolt-Nut"
- ClientHeight = 2955
- ClientLeft = 6435
- ClientTop = 2910
- ClientWidth = 3465
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- PaletteMode = 1 'UseZOrder
- ScaleHeight = 2955
- ScaleWidth = 3465
- Begin VB.ListBox ListDiam
- Height = 2010
- ItemData = "frmBoltNut.frx":0000
- Left = 1920
- List = "frmBoltNut.frx":0049
- TabIndex = 8
- Top = 240
- Width = 1452
- End
- Begin VB.Frame Frame2
- Caption = "NutType"
- Height = 1092
- Left = 240
- TabIndex = 5
- Top = 1320
- Width = 1452
- Begin VB.OptionButton NutType
- Caption = "Crown Nut"
- Height = 372
- Index = 1
- Left = 120
- TabIndex = 7
- Top = 600
- Width = 1092
- End
- Begin VB.OptionButton NutType
- Caption = "Hex Nut"
- Height = 252
- Index = 0
- Left = 120
- TabIndex = 6
- Top = 240
- Width = 1215
- End
- End
- Begin VB.Frame Frame1
- Caption = "BoltType"
- Height = 1092
- Left = 240
- TabIndex = 2
- Top = 120
- Width = 1455
- Begin VB.OptionButton BoltType
- Caption = "Hex Bolt"
- Height = 252
- Index = 1
- Left = 120
- TabIndex = 4
- Top = 720
- Width = 1095
- End
- Begin VB.OptionButton BoltType
- Caption = "Slotted Bolt"
- Height = 252
- Index = 0
- Left = 120
- TabIndex = 3
- Top = 240
- Width = 1215
- End
- End
- Begin VB.CommandButton cmdOK
- Caption = "OK"
- Height = 375
- Left = 360
- TabIndex = 0
- Top = 2520
- Width = 1335
- End
- Begin VB.CommandButton cmdCancel
- Caption = "Cancel"
- Height = 375
- Left = 2040
- TabIndex = 1
- Top = 2520
- Width = 1215
- End
- Begin VB.Label Label1
- Caption = "Diameter"
- Height = 252
- Left = 2160
- TabIndex = 9
- Top = 0
- Width = 852
- End
- Attribute VB_Name = "frmBoltNut"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- '/******************************************************************/
- '/* */
- '/* TurboCAD for Windows */
- '/* Copyright (c) 1993 - 2001 */
- '/* International Microcomputer Software, Inc. */
- '/* (IMSI) */
- '/* All rights reserved. */
- '/* */
- '/******************************************************************/
- ' Storage for read-only property indicating whether
- ' or not the dialog box was cancelled. Default is
- ' False. Note that the declaration is Private, so
- ' that the value cannot be set from the OLE client
- ' application. The client reads the value using the
- ' DialogCancelled property.
- Private blnDialogCanceled As Boolean
- ' Read-only property indicating cancellation of the
- ' dialog.
- Property Get DialogCanceled() As Boolean
- DialogCanceled = blnDialogCanceled
- End Property
- Private Sub cmdCancel_Click()
- ' Set the value of the read-only property that
- ' tells the caller the dialog was cancelled.
- blnDialogCanceled = True
- Me.Hide
- End Sub
- Private Sub cmdOK_Click()
- Me.Hide
- End Sub
- Private Sub Form_Load()
- End Sub
- Private Sub ListDiam_Click()
- End Sub
-