home *** CD-ROM | disk | FTP | other *** search
/ Planet Source Code Jumbo …e CD Visual Basic 1 to 7 / 4_2005-2006.ISO / data / Zips / MEMO_v3_019573912182005.psc / frmInfo.frm < prev    next >
Text File  |  2005-12-18  |  3KB  |  97 lines

  1. VERSION 5.00
  2. Begin VB.Form frmInfo 
  3.    BorderStyle     =   1  'Fixed Single
  4.    Caption         =   " Memo Info"
  5.    ClientHeight    =   3600
  6.    ClientLeft      =   45
  7.    ClientTop       =   330
  8.    ClientWidth     =   4950
  9.    ControlBox      =   0   'False
  10.    Icon            =   "frmInfo.frx":0000
  11.    LinkTopic       =   "Form1"
  12.    MaxButton       =   0   'False
  13.    MinButton       =   0   'False
  14.    ScaleHeight     =   3600
  15.    ScaleWidth      =   4950
  16.    StartUpPosition =   1  'CenterOwner
  17.    Begin VB.CommandButton cmdClose 
  18.       Cancel          =   -1  'True
  19.       Caption         =   "&OK"
  20.       Default         =   -1  'True
  21.       Height          =   375
  22.       Left            =   3600
  23.       TabIndex        =   1
  24.       Top             =   2760
  25.       Width           =   1215
  26.    End
  27.    Begin VB.Frame Frame1 
  28.       Height          =   125
  29.       Left            =   120
  30.       TabIndex        =   0
  31.       Top             =   2520
  32.       Width           =   4680
  33.    End
  34.    Begin VB.Label Label1 
  35.       Alignment       =   2  'Center
  36.       Caption         =   "Version 3.00.02"
  37.       BeginProperty Font 
  38.          Name            =   "MS Sans Serif"
  39.          Size            =   9.75
  40.          Charset         =   0
  41.          Weight          =   400
  42.          Underline       =   0   'False
  43.          Italic          =   0   'False
  44.          Strikethrough   =   0   'False
  45.       EndProperty
  46.       ForeColor       =   &H00FF0000&
  47.       Height          =   315
  48.       Index           =   3
  49.       Left            =   120
  50.       TabIndex        =   4
  51.       Top             =   720
  52.       Width           =   4665
  53.    End
  54.    Begin VB.Label Label1 
  55.       Caption         =   "⌐ RDDS 2003"
  56.       ForeColor       =   &H00000000&
  57.       Height          =   1425
  58.       Index           =   2
  59.       Left            =   105
  60.       TabIndex        =   3
  61.       Top             =   1080
  62.       Width           =   4695
  63.    End
  64.    Begin VB.Label Label1 
  65.       Alignment       =   2  'Center
  66.       Caption         =   "MEMO organizer"
  67.       BeginProperty Font 
  68.          Name            =   "MS Sans Serif"
  69.          Size            =   18
  70.          Charset         =   0
  71.          Weight          =   700
  72.          Underline       =   0   'False
  73.          Italic          =   0   'False
  74.          Strikethrough   =   0   'False
  75.       EndProperty
  76.       ForeColor       =   &H00FF0000&
  77.       Height          =   435
  78.       Index           =   0
  79.       Left            =   120
  80.       TabIndex        =   2
  81.       Top             =   240
  82.       Width           =   4695
  83.    End
  84. End
  85. Attribute VB_Name = "frmInfo"
  86. Attribute VB_GlobalNameSpace = False
  87. Attribute VB_Creatable = False
  88. Attribute VB_PredeclaredId = True
  89. Attribute VB_Exposed = False
  90. Private Sub cmdClose_Click()
  91. Me.Hide
  92. End Sub
  93.  
  94. Private Sub Form_Load()
  95. Me.Label1(2).Caption = "This program is freeware and can be used and distributed under following restrictions: It is forbidden to use this program, copies or parts of it for commercial purposes, sell, lease or make profit of this program by any means." & vbCrLf & vbCrLf & "⌐ Dirk Rijmenants 2003"
  96. End Sub
  97.