home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / landma1a / about.frm (.txt) next >
Encoding:
Visual Basic Form  |  1999-10-09  |  2.2 KB  |  62 lines

  1. VERSION 5.00
  2. Begin VB.Form About 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    Caption         =   "About LandMass..."
  5.    ClientHeight    =   2295
  6.    ClientLeft      =   45
  7.    ClientTop       =   330
  8.    ClientWidth     =   7215
  9.    Icon            =   "About.frx":0000
  10.    LinkTopic       =   "Form1"
  11.    MaxButton       =   0   'False
  12.    MinButton       =   0   'False
  13.    ScaleHeight     =   2295
  14.    ScaleWidth      =   7215
  15.    ShowInTaskbar   =   0   'False
  16.    StartUpPosition =   2  'CenterScreen
  17.    Begin VB.CommandButton Command1 
  18.       Caption         =   "OK"
  19.       Height          =   375
  20.       Left            =   2880
  21.       TabIndex        =   1
  22.       Top             =   1800
  23.       Width           =   1335
  24.    End
  25.    Begin VB.Label Label3 
  26.       Caption         =   "Flexgrid experiment number two.  Now we get fancy.  :)"
  27.       Height          =   495
  28.       Left            =   240
  29.       TabIndex        =   3
  30.       Top             =   1440
  31.       Width           =   6855
  32.    End
  33.    Begin VB.Label Label2 
  34.       Caption         =   "Flexgrid experiment number two.  Now we get fancy.  :)"
  35.       Height          =   495
  36.       Left            =   240
  37.       TabIndex        =   2
  38.       Top             =   840
  39.       Width           =   6855
  40.    End
  41.    Begin VB.Label Label1 
  42.       Caption         =   "Flexgrid experiment number two.  Now we get fancy.  :)"
  43.       Height          =   495
  44.       Left            =   240
  45.       TabIndex        =   0
  46.       Top             =   240
  47.       Width           =   6855
  48.    End
  49. Attribute VB_Name = "About"
  50. Attribute VB_GlobalNameSpace = False
  51. Attribute VB_Creatable = False
  52. Attribute VB_PredeclaredId = True
  53. Attribute VB_Exposed = False
  54. Private Sub Command1_Click()
  55. About.Hide
  56. End Sub
  57. Private Sub Form_Load()
  58. Label1.Caption = "LandMass was originally written by me, Jason Merlo, as an MSFlexGrid experiment.  As it turns out, Flexgrids are really, really slow and are not built for graphics."
  59. Label2.Caption = "I then dropped the project for a while but picked it back up once I learned how to use the BitBlt 32-bit API function.  Now tile-based game engines are relatively easy to build."
  60. Label3.Caption = "I intend to turn LandMass into a Risk-style wargame, eventually."
  61. End Sub
  62.