?? form1.frm
字號:
VERSION 5.00
Begin VB.Form Form1
Caption = "Form1"
ClientHeight = 7470
ClientLeft = 60
ClientTop = 345
ClientWidth = 9930
LinkTopic = "Form1"
OLEDropMode = 1 'Manual
ScaleHeight = 7470
ScaleWidth = 9930
StartUpPosition = 3 '窗口缺省
Begin VB.TextBox Text1
Height = 1215
Left = 720
MultiLine = -1 'True
TabIndex = 1
Top = 2640
Width = 3375
End
Begin VB.ListBox List1
Height = 1860
Left = 720
TabIndex = 0
Top = 720
Width = 3375
End
Begin VB.Image Image1
Height = 735
Left = 720
Top = 4320
Width = 1095
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_OLEDragDrop(Data As DataObject, Effect As Long, Button As Integer, Shift As Integer, x As Single, y As Single)
On Error Resume Next
If Data.GetFormat(vbCFText) Then
Text1.Text = Data.GetData(vbCFText)
End If
If Data.GetData(vbCFDIB) Then
Image1.Picture = Data.GetData(vbCFDIB)
End If
If Data.GetData(vbCFFiles) Then
For i = 1 To Data.Files.Count
List1.AddItem Data.Files.Item(i)
Next
End If
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -