?? test.frm
字號:
VERSION 5.00
Object = "{FA28509C-AAF0-4227-AF72-CC50D19ACDF2}#1.0#0"; "TaskForm.ocx"
Begin VB.Form Form1
Caption = "Play78.com"
ClientHeight = 5850
ClientLeft = -6135
ClientTop = -4455
ClientWidth = 1890
Icon = "test.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 5850
ScaleWidth = 1890
StartUpPosition = 1 '所有者中心
Begin taskform.TaskBar TaskBar1
Left = 360
Top = 3120
_ExtentX = 873
_ExtentY = 873
End
Begin VB.TextBox Text1
Height = 315
Left = 120
TabIndex = 0
Text = "500"
Top = 2520
Width = 765
End
Begin VB.CommandButton Command6
Caption = "設置"
Height = 345
Left = 960
TabIndex = 5
Top = 2520
Width = 765
End
Begin VB.CommandButton Command5
Caption = "禁止隱藏到右邊"
Height = 465
Left = 60
TabIndex = 4
Top = 1140
Width = 1725
End
Begin VB.CommandButton Command4
Caption = "禁止隱藏到左邊"
Height = 465
Left = 60
TabIndex = 3
Top = 630
Width = 1725
End
Begin VB.CommandButton Command3
Caption = "禁止隱藏到頂部"
Height = 495
Left = 60
TabIndex = 2
Top = 90
Width = 1725
End
Begin VB.CommandButton Command1
Caption = "取消窗體顯示最前"
Height = 465
Left = 60
TabIndex = 1
Top = 1650
Width = 1725
End
Begin VB.Label Label2
Caption = "類似于qq的可以隱藏到屏幕四周圍的控件,海闊天空開發,更多信息請查詢:http://www.play78.com 原碼下載。專門提供原碼給大家共享"
Height = 1605
Left = 0
TabIndex = 7
Top = 4140
Width = 1875
End
Begin VB.Label Label1
Caption = "每毫秒移動的長度"
Height = 255
Left = 90
TabIndex = 6
Top = 2190
Width = 1485
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
' **********************************************************************
' 描 述:vb 實現qq的可以拖隱藏到屏幕四邊的效果的控件
' Play78.com : 網站導航,源碼之家,絕對開源
' 海闊天空編寫,有問題請上www.paly78.com 提
' 網址:http://www.play78.com/
' QQ:13355575
' e-mail:hglai@eyou.com
' 開發時間:2005-7-3
' **********************************************************************
Private Sub Command1_Click()
If Command1.Caption = "窗體顯示在最前" Then
TaskBar1.OnTop = True: Command1.Caption = "取消窗體顯示最前"
Else
TaskBar1.OnTop = False: Command1.Caption = "窗體顯示在最前"
End If
End Sub
Private Sub Command3_Click()
If Command3.Caption = "允許隱藏到頂部" Then
TaskBar1.GoTop = True: Command3.Caption = "禁止隱藏到頂部"
Else
TaskBar1.GoTop = False: Command3.Caption = "允許隱藏到頂部"
End If
End Sub
Private Sub Command4_Click()
If Command4.Caption = "允許隱藏到左邊" Then
TaskBar1.GoLeft = True: Command4.Caption = "禁止隱藏到左邊"
Else
TaskBar1.GoLeft = False: Command4.Caption = "允許隱藏到左邊"
End If
End Sub
Private Sub Command5_Click()
If Command5.Caption = "允許隱藏到右邊" Then
TaskBar1.GoRight = True: Command5.Caption = "禁止隱藏到右邊"
Else
TaskBar1.GoRight = False: Command5.Caption = "允許隱藏到右邊"
End If
End Sub
Private Sub Command6_Click()
If Text1.Text = "" Then MsgBox "速度不能為空": Exit Sub
If Text1.Text <= 0 Or Not IsNumeric(Text1.Text) Then MsgBox "速度要為大于0的數字": Exit Sub
TaskBar1.MoveLength = Text1.Text
End Sub
Private Sub Form_Load()
'TaskBar1.setform Me
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -