home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Object = "{75C038D3-EA57-11D2-A3BC-000000000000}#1.0#0"; "fsScroll5D.ocx"
- Begin VB.Form frmAuto
- BorderStyle = 1 'Fixed Single
- Caption = "Auto Mouse Scroll"
- ClientHeight = 2775
- ClientLeft = 45
- ClientTop = 330
- ClientWidth = 6825
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 2775
- ScaleWidth = 6825
- StartUpPosition = 3 'Windows Default
- Begin FishheadScroll.fsScroll fsScroll1
- Align = 1 'Align Top
- Height = 2745
- Left = 0
- TabIndex = 0
- Top = 0
- Width = 6825
- _ExtentX = 12039
- _ExtentY = 4842
- AdjustBottom = 0
- AdjustLeft = 0
- AdjustRight = 0
- AdjustTop = 0
- MouseIcon = "Form7.frx":0000
- Begin VB.PictureBox Picture1
- AutoSize = -1 'True
- Height = 1260
- Index = 5
- Left = 6570
- Picture = "Form7.frx":031A
- ScaleHeight = 1200
- ScaleWidth = 6465
- TabIndex = 6
- Top = 0
- Width = 6525
- End
- Begin VB.PictureBox Picture1
- AutoSize = -1 'True
- Height = 1260
- Index = 4
- Left = 6570
- Picture = "Form7.frx":13BF
- ScaleHeight = 1200
- ScaleWidth = 6465
- TabIndex = 5
- Top = 1260
- Width = 6525
- End
- Begin VB.PictureBox Picture1
- AutoSize = -1 'True
- Height = 1260
- Index = 3
- Left = 6570
- Picture = "Form7.frx":2464
- ScaleHeight = 1200
- ScaleWidth = 6465
- TabIndex = 4
- Top = 2520
- Width = 6525
- End
- Begin VB.PictureBox Picture1
- AutoSize = -1 'True
- Height = 1260
- Index = 2
- Left = 0
- Picture = "Form7.frx":3509
- ScaleHeight = 1200
- ScaleWidth = 6465
- TabIndex = 3
- Top = 2520
- Width = 6525
- End
- Begin VB.PictureBox Picture1
- AutoSize = -1 'True
- Height = 1260
- Index = 1
- Left = 0
- Picture = "Form7.frx":45AE
- ScaleHeight = 1200
- ScaleWidth = 6465
- TabIndex = 2
- Top = 1260
- Width = 6525
- End
- Begin VB.PictureBox Picture1
- AutoSize = -1 'True
- Height = 1260
- Index = 0
- Left = 0
- Picture = "Form7.frx":5653
- ScaleHeight = 1200
- ScaleWidth = 6465
- TabIndex = 1
- Top = 0
- Width = 6525
- End
- End
- Attribute VB_Name = "frmAuto"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- ' This sample shows how to create an auto mouse scroll.
- Private Sub Form_Load()
- ' Can be set at design time or runtime
- fsScroll1.ScrollBorderX = 2000
- fsScroll1.ScrollBorderY = 1400
- End Sub
- Private Sub Form_Unload(Cancel As Integer)
- Set frmAuto = Nothing
- End Sub
-