VERSION 5.00
Begin VB.Form frmStrip
BackColor = &H80000001&
BorderStyle = 0 'None
Caption = "Form1"
ClientHeight = 1605
ClientLeft = 0
ClientTop = 0
ClientWidth = 2280
Icon = "frmStrip.frx":0000
LinkTopic = "Form1"
ScaleHeight = 107
ScaleMode = 3 'Pixel
ScaleWidth = 152
ShowInTaskbar = 0 'False
StartUpPosition = 3 'Windows Default
End
Attribute VB_Name = "frmStrip"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Form_Load()
Me.Left = 0
Me.Top = 0
Me.Width = Screen.Width \ 10
Me.Height = 15
End Sub
Private Sub Form_MouseMove(Button As Integer, Shift As Integer, x As Single, y As Single)
frmDesktop.SetFocus
End Sub