home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Object = "*\ADynaFlashX.vbp"
- Begin VB.Form Test
- Caption = "DynaFlash Example - (c) DYNAMEDIA - www.station-media.com/dynamedia"
- ClientHeight = 5265
- ClientLeft = 60
- ClientTop = 345
- ClientWidth = 8085
- LinkTopic = "Form1"
- ScaleHeight = 5265
- ScaleWidth = 8085
- StartUpPosition = 2 'CenterScreen
- Begin DynaFlashX.DynaFlash DynaFlash1
- Height = 615
- Left = 3735
- TabIndex = 12
- Top = 2040
- Width = 615
- _ExtentX = 1085
- _ExtentY = 1085
- End
- Begin VB.CommandButton Command3
- Caption = "CommandButton with Tag Property NOT set to 1"
- Height = 735
- Left = 3135
- TabIndex = 11
- Top = 855
- Width = 1770
- End
- Begin VB.OptionButton Option1
- Caption = "OptionButton"
- Height = 285
- Left = 90
- TabIndex = 9
- Tag = "1"
- Top = 4245
- Width = 2955
- End
- Begin VB.CheckBox Check1
- Caption = "CheckBox"
- Height = 255
- Left = 135
- TabIndex = 8
- Tag = "1"
- Top = 3900
- Width = 2925
- End
- Begin VB.ComboBox Combo1
- Height = 315
- Left = 75
- TabIndex = 7
- Tag = "1"
- Text = "Combo1"
- Top = 3450
- Width = 2955
- End
- Begin VB.PictureBox Picture1
- Height = 645
- Left = 60
- ScaleHeight = 585
- ScaleWidth = 2925
- TabIndex = 6
- Tag = "1"
- Top = 1485
- Width = 2985
- End
- Begin VB.Frame Frame1
- Caption = "How does it work?"
- Height = 4935
- Left = 4980
- TabIndex = 4
- Top = 240
- Width = 3015
- Begin VB.Label Label2
- Caption = $"Test.frx":0000
- BeginProperty Font
- Name = "Arial"
- Size = 8.25
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 2940
- Left = 135
- TabIndex = 5
- Top = 270
- Width = 2805
- End
- End
- Begin VB.CommandButton Command2
- Caption = "CommandButton"
- Height = 405
- Left = 60
- Style = 1 'Graphical
- TabIndex = 3
- Tag = "1"
- Top = 855
- Width = 2985
- End
- Begin VB.ListBox List1
- Height = 450
- Left = 60
- TabIndex = 2
- Tag = "1"
- Top = 2865
- Width = 2985
- End
- Begin VB.TextBox Text1
- Height = 540
- Left = 60
- TabIndex = 1
- Tag = "1"
- Text = "TextBox"
- Top = 2235
- Width = 2985
- End
- Begin VB.CommandButton Command1
- Caption = "Start Flashing"
- Height = 570
- Left = 45
- TabIndex = 0
- Top = 90
- Width = 1470
- End
- Begin VB.Label Label1
- Caption = "And every other object..."
- BeginProperty Font
- Name = "Arial"
- Size = 8.25
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 345
- Left = 60
- TabIndex = 10
- Top = 4815
- Width = 3120
- End
- Attribute VB_Name = "Test"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub Command1_Click()
- 'When you register, put your name and password here:
- DynaFlash1.User_Name = "Dynamedia"
- DynaFlash1.User_Password = 123456
- DynaFlash1.StartFade
- Text1.SetFocus
- End Sub
- Private Sub Form_Unload(Cancel As Integer)
- DynaFlash1.StopFade
- End Sub
-