home *** CD-ROM | disk | FTP | other *** search
/ Planet Source Code Jumbo …e CD Visual Basic 1 to 7 / 3_2004-2005.ISO / Data / Zips / SQL_Server1843151232005.psc / frmAbout.frm < prev    next >
Text File  |  2005-01-11  |  2KB  |  77 lines

  1. VERSION 5.00
  2. Begin VB.Form frmAbout 
  3.    Caption         =   "About SQL Developer"
  4.    ClientHeight    =   3090
  5.    ClientLeft      =   60
  6.    ClientTop       =   450
  7.    ClientWidth     =   4770
  8.    ClipControls    =   0   'False
  9.    ControlBox      =   0   'False
  10.    LinkTopic       =   "Form1"
  11.    ScaleHeight     =   3090
  12.    ScaleWidth      =   4770
  13.    StartUpPosition =   2  'CenterScreen
  14.    Begin VB.CommandButton Command1 
  15.       Caption         =   "Done"
  16.       Height          =   375
  17.       Left            =   1920
  18.       TabIndex        =   0
  19.       Top             =   2520
  20.       Width           =   975
  21.    End
  22.    Begin VB.Label Label3 
  23.       Caption         =   "Written by Steven Zoch. email eureka@"
  24.       Height          =   1095
  25.       Left            =   120
  26.       TabIndex        =   3
  27.       Top             =   1200
  28.       Width           =   4575
  29.       WordWrap        =   -1  'True
  30.    End
  31.    Begin VB.Label Label2 
  32.       Caption         =   "Version 1.1.0"
  33.       Height          =   255
  34.       Left            =   1920
  35.       TabIndex        =   2
  36.       Top             =   840
  37.       Width           =   975
  38.    End
  39.    Begin VB.Label Label1 
  40.       Alignment       =   2  'Center
  41.       Caption         =   "SQL Developer"
  42.       BeginProperty Font 
  43.          Name            =   "Arial"
  44.          Size            =   15.75
  45.          Charset         =   0
  46.          Weight          =   700
  47.          Underline       =   0   'False
  48.          Italic          =   -1  'True
  49.          Strikethrough   =   0   'False
  50.       EndProperty
  51.       Height          =   495
  52.       Left            =   0
  53.       TabIndex        =   1
  54.       Top             =   240
  55.       Width           =   4695
  56.    End
  57. End
  58. Attribute VB_Name = "frmAbout"
  59. Attribute VB_GlobalNameSpace = False
  60. Attribute VB_Creatable = False
  61. Attribute VB_PredeclaredId = True
  62. Attribute VB_Exposed = False
  63. Private Sub Command1_Click()
  64.  
  65. Unload frmAbout
  66.  
  67. End Sub
  68.  
  69. Private Sub Form_Load()
  70.  
  71. msg = "Written by Steven Zoch, email eureka@datasecuritysolutions.com." + vbCrLf
  72. msg = msg + "This program is opensource and you are feel to modify, improve and add features.  You are not allowed to sell this product."
  73.  
  74. Label3.Caption = msg
  75.  
  76. End Sub
  77.