home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmAbout
- BackColor = &H00C0C0C0&
- BorderStyle = 3 'Fixed Dialog
- Caption = "About ListAPI"
- ClientHeight = 2955
- ClientLeft = 2385
- ClientTop = 3180
- ClientWidth = 5880
- ControlBox = 0 'False
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- PaletteMode = 1 'UseZOrder
- ScaleHeight = 2955
- ScaleWidth = 5880
- ShowInTaskbar = 0 'False
- Begin VB.CommandButton Command1
- Caption = "Close"
- Default = -1 'True
- Height = 375
- Left = 4860
- TabIndex = 0
- Top = 2250
- Width = 930
- End
- Begin VB.Label Label2
- Caption = "www.desaware.com"
- BeginProperty Font
- Name = "Arial"
- Size = 9.75
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H00000080&
- Height = 195
- Left = 2070
- TabIndex = 9
- Top = 2160
- Width = 2415
- End
- Begin VB.Label Label9
- Caption = "ListAPI - Desaware API Viewer and Add-In"
- BeginProperty Font
- Name = "Arial"
- Size = 9.75
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 255
- Left = 300
- TabIndex = 8
- Top = 660
- Width = 5055
- End
- Begin VB.Label Label8
- Caption = "Desaware"
- BeginProperty Font
- Name = "Arial"
- Size = 20.25
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = -1 'True
- Strikethrough = 0 'False
- EndProperty
- Height = 435
- Left = 300
- TabIndex = 7
- Top = 120
- Width = 2355
- End
- Begin VB.Label Label1
- Alignment = 1 'Right Justify
- Caption = "API Toolkit"
- BeginProperty Font
- Name = "Arial"
- Size = 14.25
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H00FF0000&
- Height = 315
- Left = 2880
- TabIndex = 6
- Top = 240
- Width = 2715
- End
- Begin VB.Label Label3
- Caption = "Copyright
- 1996-1997 by Desaware Inc. All Rights Reserved"
- Height = 255
- Left = 300
- TabIndex = 5
- Top = 960
- Width = 4935
- End
- Begin VB.Label Label4
- Caption = $"frmAbout.frx":0000
- Height = 855
- Left = 300
- TabIndex = 4
- Top = 1260
- Width = 4995
- End
- Begin VB.Label Label5
- Caption = "Desaware Inc."
- BeginProperty Font
- Name = "Arial"
- Size = 9.75
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 195
- Left = 300
- TabIndex = 3
- Top = 2160
- Width = 1605
- End
- Begin VB.Label Label6
- Caption = "1100 E. Hamilton Ave. Suite 4, Campbell, CA 95008"
- Height = 195
- Left = 300
- TabIndex = 2
- Top = 2400
- Width = 4275
- End
- Begin VB.Label Label7
- Caption = "(408) 377-4770, fax: (408) 371-3530. support@desaware.com"
- Height = 195
- Left = 300
- TabIndex = 1
- Top = 2640
- Width = 5445
- End
- Begin VB.Line Line1
- BorderWidth = 4
- X1 = 300
- X2 = 5580
- Y1 = 600
- Y2 = 600
- End
- Attribute VB_Name = "frmAbout"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- ' Copyright
- 1996 by Desaware Inc.
- ' Part of the Desaware API Toolkit
- ' All Rights Reserved
- Option Explicit
- Public Sub Command1_Click()
- Unload Me
- End Sub
- Private Sub Form_Load()
- Me.Top = (Screen.Height - Me.Height) / 2
- Me.Left = (Screen.Width - Me.Width) / 2
- End Sub
-