VERSION 4.00 Begin VB.Form frmAboutDialog Appearance = 0 'Flat BackColor = &H80000005& BorderStyle = 3 'Fixed Dialog Caption = "About Visio Inventory" ClientHeight = 2190 ClientLeft = 1710 ClientTop = 2070 ClientWidth = 5475 BeginProperty Font name = "MS Sans Serif" charset = 0 weight = 700 size = 8.25 underline = 0 'False italic = 0 'False strikethrough = 0 'False EndProperty ForeColor = &H80000008& Height = 2595 Left = 1650 LinkTopic = "Form3" MaxButton = 0 'False MinButton = 0 'False ScaleHeight = 2190 ScaleWidth = 5475 Top = 1725 Width = 5595 Begin VB.CommandButton IDOK Appearance = 0 'Flat BackColor = &H80000005& Caption = "&OK" Height = 375 Left = 4140 TabIndex = 8 Top = 180 Width = 1215 End Begin VB.PictureBox Picture1 Appearance = 0 'Flat AutoSize = -1 'True BackColor = &H80000005& ForeColor = &H80000008& Height = 510 Left = 120 Picture = "ABOUT.frx":0000 ScaleHeight = 0.508 ScaleMode = 0 'User ScaleWidth = 0.451 TabIndex = 5 Top = 120 Width = 510 End Begin VB.Label Label8 Alignment = 2 'Center Appearance = 0 'Flat BackColor = &H80000005& Caption = "By Troy Sandal" ForeColor = &H80000008& Height = 255 Left = 1020 TabIndex = 9 Top = 720 Width = 2895 End Begin VB.Label txtUser Appearance = 0 'Flat BackColor = &H80000005& ForeColor = &H80000008& Height = 255 Left = 1680 TabIndex = 7 Top = 1560 Width = 3615 End Begin VB.Label txtCompany Appearance = 0 'Flat BackColor = &H80000005& ForeColor = &H80000008& Height = 255 Left = 1680 TabIndex = 6 Top = 1800 Width = 3615 End Begin VB.Line Line1 X1 = 600 X2 = 5280 Y1 = 1440 Y2 = 1440 End Begin VB.Label Label5 Alignment = 1 'Right Justify Appearance = 0 'Flat BackColor = &H80000005& Caption = "Company:" ForeColor = &H80000008& Height = 255 Left = 600 TabIndex = 4 Top = 1800 Width = 975 End Begin VB.Label Label4 Alignment = 1 'Right Justify Appearance = 0 'Flat BackColor = &H80000005& Caption = "User:" ForeColor = &H80000008& Height = 255 Left = 600 TabIndex = 3 Top = 1560 Width = 975 End Begin VB.Label Label3 Appearance = 0 'Flat BackColor = &H80000005& Caption = "This product is licensed to:" ForeColor = &H80000008& Height = 255 Left = 600 TabIndex = 2 Top = 1200 Width = 2655 End Begin VB.Label Label2 Alignment = 2 'Center Appearance = 0 'Flat BackColor = &H80000005& Caption = " 1993 Shapeware Corporation" ForeColor = &H80000008& Height = 255 Left = 1020 TabIndex = 1 Top = 480 Width = 2895 End Begin VB.Label txtTitle Alignment = 2 'Center Appearance = 0 'Flat AutoSize = -1 'True BackColor = &H80000005& Caption = "Visio Inventory Add-On" ForeColor = &H80000008& Height = 195 Left = 1470 TabIndex = 0 Top = 240 Width = 1995 End Attribute VB_Name = "frmAboutDialog" Attribute VB_Creatable = False Attribute VB_Exposed = False ' ----------------------------------------------------------------------------- ' Copyright (C) 1993-1996 Visio Corporation. All rights reserved. ' You have a royalty-free right to use, modify, reproduce and distribute ' the Sample Application Files (and/or any modified version) in any way ' you find useful, provided that you agree that Visio has no warranty, ' obligations or liability for any Sample Application Files. ' ----------------------------------------------------------------------------- Option Explicit Private Sub Form_Load() txtTitle.Caption = txtTitle.Caption & " " & G_VERSION End Sub '------------------------------------ '--- IDOK_CLick --------------------- '-- When the user presses OK we simply unload the form. Private Sub IDOK_Click() Unload frmAboutDialog End Sub