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/MSNStatusForm.frm (2.63 KB)

VERSION 5.00
Begin VB.Form MSNStatusForm 
   BorderStyle     =   3  'Fixed Dialog
   Caption         =   "MSN Messenger Status"
   ClientHeight    =   1095
   ClientLeft      =   45
   ClientTop       =   330
   ClientWidth     =   3495
   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            =   "MSNStatusForm.frx":0000
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   1095
   ScaleWidth      =   3495
   ShowInTaskbar   =   0   'False
   StartUpPosition =   1  'CenterOwner
   Begin VB.ComboBox cboStatus 
      Height          =   315
      ItemData        =   "MSNStatusForm.frx":000C
      Left            =   840
      List            =   "MSNStatusForm.frx":0022
      Style           =   2  'Dropdown List
      TabIndex        =   1
      Top             =   120
      Width           =   2535
   End
   Begin VB.CommandButton Command1 
      Caption         =   "OK"
      Default         =   -1  'True
      Height          =   375
      Left            =   840
      TabIndex        =   2
      Top             =   600
      Width           =   1215
   End
   Begin VB.CommandButton Command2 
      Cancel          =   -1  'True
      Caption         =   "Cancel"
      Height          =   375
      Left            =   2160
      TabIndex        =   3
      Top             =   600
      Width           =   1215
   End
   Begin VB.Image ImgMSN 
      Height          =   480
      Left            =   120
      Picture         =   "MSNStatusForm.frx":0066
      Top             =   540
      Width           =   480
   End
   Begin VB.Label Label1 
      BackStyle       =   0  'Transparent
      Caption         =   "&Status:"
      Height          =   255
      Left            =   120
      TabIndex        =   0
      Top             =   180
      Width           =   615
   End
End
Attribute VB_Name = "MSNStatusForm"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
    LaunchOptn_MSNStatus = cboStatus.ListIndex
    LaunchForm.lstOptions.List(3) = "Change MSN Messenger status to: " + cboStatus.Text
    Unload Me
End Sub

Private Sub Command2_Click()
    Unload Me
End Sub


Private Sub Form_Load()
    cboStatus.ListIndex = LaunchOptn_MSNStatus
End Sub


Download QuickQuery HL Edition/MSNStatusForm.frm

Back to file list


Back to project page