Projects

Find all our projects in development below.
All source code is GNU General Public License (GPL)

QuickQuery Half-Life Edition

Browsing QuickQuery HL Edition/ServerPasswordForm.frm (2.31 KB)

VERSION 5.00
Begin VB.Form ServerPasswordForm 
   BorderStyle     =   3  'Fixed Dialog
   Caption         =   "Server Password"
   ClientHeight    =   1095
   ClientLeft      =   45
   ClientTop       =   330
   ClientWidth     =   4095
   ClipControls    =   0   'False
   BeginProperty Font 
      Name            =   "Tahoma"
      Size            =   8.25
      Charset         =   0
      Weight          =   400
      Underline       =   0   'False
      Italic          =   0   'False
      Strikethrough   =   0   'False
   EndProperty
   Icon            =   "ServerPasswordForm.frx":0000
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   1095
   ScaleWidth      =   4095
   ShowInTaskbar   =   0   'False
   StartUpPosition =   1  'CenterOwner
   Begin VB.CommandButton Command2 
      Cancel          =   -1  'True
      Caption         =   "Cancel"
      Height          =   375
      Left            =   2760
      TabIndex        =   2
      Top             =   600
      Width           =   1215
   End
   Begin VB.CommandButton Command1 
      Caption         =   "OK"
      Default         =   -1  'True
      Height          =   375
      Left            =   1440
      TabIndex        =   1
      Top             =   600
      Width           =   1215
   End
   Begin VB.TextBox Text1 
      Height          =   315
      Left            =   120
      MaxLength       =   100
      TabIndex        =   0
      Top             =   120
      Width           =   3855
   End
   Begin VB.Image ImgKey 
      Height          =   480
      Left            =   120
      Picture         =   "ServerPasswordForm.frx":000C
      Top             =   540
      Width           =   480
   End
End
Attribute VB_Name = "ServerPasswordForm"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False

Private Sub Command1_Click()
    LaunchForm.strPassword = Text1.Text
    LaunchForm.bPasswordCancel = False
    Unload Me
End Sub

Private Sub Command2_Click()
    LaunchForm.bPasswordCancel = True
    Unload Me
End Sub

Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer)
    If UnloadMode = 0 Then LaunchForm.bPasswordCancel = True
End Sub


Download QuickQuery HL Edition/ServerPasswordForm.frm

Back to file list


Back to project page