home *** CD-ROM | disk | FTP | other *** search
/ Microsoft DirectX SDK 7.0 / Dx7.bin / DXF / samples / multimedia / vbsamples / ddraw / src / ddblend / instructions.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1999-08-07  |  1.6 KB  |  50 lines

  1. VERSION 5.00
  2. Begin VB.Form Instructions 
  3.    Caption         =   "DDBlend"
  4.    ClientHeight    =   3150
  5.    ClientLeft      =   60
  6.    ClientTop       =   345
  7.    ClientWidth     =   4680
  8.    Icon            =   "Instructions.frx":0000
  9.    LinkTopic       =   "Form1"
  10.    ScaleHeight     =   3150
  11.    ScaleWidth      =   4680
  12.    StartUpPosition =   3  'Windows Default
  13.    Begin VB.CommandButton Command1 
  14.       Caption         =   "OK"
  15.       Height          =   375
  16.       Left            =   120
  17.       TabIndex        =   0
  18.       Top             =   2760
  19.       Width           =   4455
  20.    End
  21.    Begin VB.TextBox Text1 
  22.       Height          =   2535
  23.       Left            =   120
  24.       Locked          =   -1  'True
  25.       MultiLine       =   -1  'True
  26.       TabIndex        =   1
  27.       Top             =   120
  28.       Width           =   4455
  29.    End
  30. Attribute VB_Name = "Instructions"
  31. Attribute VB_GlobalNameSpace = False
  32. Attribute VB_Creatable = False
  33. Attribute VB_PredeclaredId = True
  34. Attribute VB_Exposed = False
  35. Private Sub Command1_Click()
  36.     Start = True
  37.     Unload Me
  38. End Sub
  39. Private Sub Form_Load()
  40.     Text1.Text = "Instructions:" & vbCrLf & vbCrLf & _
  41.         "Switch Screen Modes:   Insert/Delete" & vbCrLf & vbCrLf & _
  42.         "Add/Remove Particles:  Home/End" & vbCrLf & vbCrLf & _
  43.         "Modify Blur Factor:         PageUp/PageDown" & vbCrLf & vbCrLf & _
  44.         "Switch Palettes:             Space" & vbCrLf & vbCrLf & _
  45.         "Move the origin with the mouse."
  46. End Sub
  47. Private Sub Form_UnLoad(Cancel As Integer)
  48.         If Not Start Then End
  49. End Sub
  50.