home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / Visual Basic new SourceCode and Projects / Personal Organiser / Message.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  2000-08-12  |  1.8 KB  |  60 lines

  1. VERSION 5.00
  2. Begin VB.Form Form2 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    Caption         =   " Personal Organiser 3.0"
  5.    ClientHeight    =   1065
  6.    ClientLeft      =   45
  7.    ClientTop       =   330
  8.    ClientWidth     =   3375
  9.    Icon            =   "Message.frx":0000
  10.    LinkTopic       =   "Form2"
  11.    MaxButton       =   0   'False
  12.    MinButton       =   0   'False
  13.    ScaleHeight     =   1065
  14.    ScaleWidth      =   3375
  15.    ShowInTaskbar   =   0   'False
  16.    StartUpPosition =   2  'CenterScreen
  17.    Begin VB.CommandButton Command2 
  18.       Caption         =   "&OK"
  19.       BeginProperty Font 
  20.          Name            =   "Tahoma"
  21.          Size            =   8.25
  22.          Charset         =   0
  23.          Weight          =   400
  24.          Underline       =   0   'False
  25.          Italic          =   0   'False
  26.          Strikethrough   =   0   'False
  27.       EndProperty
  28.       Height          =   285
  29.       Left            =   1280
  30.       TabIndex        =   1
  31.       Top             =   650
  32.       Width           =   855
  33.    End
  34.    Begin VB.Label Label1 
  35.       Alignment       =   2  'Center
  36.       BeginProperty Font 
  37.          Name            =   "Tahoma"
  38.          Size            =   8.25
  39.          Charset         =   0
  40.          Weight          =   400
  41.          Underline       =   0   'False
  42.          Italic          =   0   'False
  43.          Strikethrough   =   0   'False
  44.       EndProperty
  45.       Height          =   255
  46.       Left            =   0
  47.       TabIndex        =   0
  48.       Top             =   240
  49.       Width           =   3375
  50.    End
  51. Attribute VB_Name = "Form2"
  52. Attribute VB_GlobalNameSpace = False
  53. Attribute VB_Creatable = False
  54. Attribute VB_PredeclaredId = True
  55. Attribute VB_Exposed = False
  56. Option Explicit
  57. Private Sub Command2_Click()
  58. Unload Me
  59. End Sub
  60.