home *** CD-ROM | disk | FTP | other *** search
/ CD Shareware Magazine 1999 April / CD_Shareware_Magazine_31.iso / Free / Prg / flashwindow.exe / Tst.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1998-09-15  |  2.9 KB  |  98 lines

  1. VERSION 5.00
  2. Object = "{844BFD2C-4CBC-11D2-B62A-005106C10000}#4.0#0"; "FlashWindowControl.ocx"
  3. Begin VB.Form frmTst 
  4.    Caption         =   "THEMA FlashWindowControl Example"
  5.    ClientHeight    =   4725
  6.    ClientLeft      =   60
  7.    ClientTop       =   405
  8.    ClientWidth     =   4425
  9.    Icon            =   "Tst.frx":0000
  10.    LinkTopic       =   "Form1"
  11.    ScaleHeight     =   4725
  12.    ScaleWidth      =   4425
  13.    StartUpPosition =   3  'Windows Default
  14.    Begin FlashWindowControl.FlashWinCtrl FlashWinCtrl1 
  15.       Left            =   135
  16.       Top             =   2760
  17.       _ExtentX        =   7250
  18.       _ExtentY        =   3360
  19.    End
  20.    Begin VB.HScrollBar HScroll1 
  21.       Height          =   285
  22.       Left            =   750
  23.       Max             =   2000
  24.       Min             =   100
  25.       TabIndex        =   3
  26.       Top             =   435
  27.       Value           =   100
  28.       Width           =   3480
  29.    End
  30.    Begin VB.CommandButton Command2 
  31.       Caption         =   "Stop"
  32.       Height          =   705
  33.       Left            =   1110
  34.       TabIndex        =   1
  35.       Top             =   1890
  36.       Width           =   2160
  37.    End
  38.    Begin VB.CommandButton Command1 
  39.       Caption         =   "Start"
  40.       Height          =   705
  41.       Left            =   1110
  42.       TabIndex        =   0
  43.       Top             =   1140
  44.       Width           =   2160
  45.    End
  46.    Begin VB.Label Label5 
  47.       Caption         =   "http://www.geocities.com/SiliconValley/Haven/2118"
  48.       Height          =   195
  49.       Left            =   225
  50.       TabIndex        =   7
  51.       Top             =   3945
  52.       Width           =   4035
  53.    End
  54.    Begin VB.Label Label4 
  55.       Alignment       =   2  'Center
  56.       Caption         =   "THEMA FlashWindowControl Example by Maarten van Gompel, September 1998"
  57.       Height          =   975
  58.       Left            =   645
  59.       TabIndex        =   6
  60.       Top             =   2955
  61.       Width           =   3105
  62.    End
  63.    Begin VB.Label Label3 
  64.       Caption         =   "Slow"
  65.       Height          =   165
  66.       Left            =   3630
  67.       TabIndex        =   5
  68.       Top             =   795
  69.       Width           =   615
  70.    End
  71.    Begin VB.Label Label2 
  72.       Caption         =   "Fast"
  73.       Height          =   165
  74.       Left            =   810
  75.       TabIndex        =   4
  76.       Top             =   780
  77.       Width           =   615
  78.    End
  79.    Begin VB.Label Label1 
  80.       Caption         =   "Speed:"
  81.       Height          =   225
  82.       Left            =   135
  83.       TabIndex        =   2
  84.       Top             =   450
  85.       Width           =   675
  86.    End
  87. Attribute VB_Name = "frmTst"
  88. Attribute VB_GlobalNameSpace = False
  89. Attribute VB_Creatable = False
  90. Attribute VB_PredeclaredId = True
  91. Attribute VB_Exposed = False
  92. Private Sub Command1_Click()
  93. FlashWinCtrl1.StartFlash frmTst, HScroll1.Value
  94. End Sub
  95. Private Sub Command2_Click()
  96. FlashWinCtrl1.StopFlash
  97. End Sub
  98.