📄 form5.frm
字号:
VERSION 5.00
Begin VB.Form Form5
BorderStyle = 3 'Fixed Dialog
Caption = "Help Topics"
ClientHeight = 2424
ClientLeft = 36
ClientTop = 264
ClientWidth = 6732
Icon = "Form5.frx":0000
LinkTopic = "Form5"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 2424
ScaleWidth = 6732
ShowInTaskbar = 0 'False
StartUpPosition = 1 'CenterOwner
Begin VB.CommandButton Command1
Caption = "Ok"
Height = 300
Left = 5616
TabIndex = 2
Top = 2064
Width = 1068
End
Begin VB.TextBox Text1
Height = 1980
Left = 2016
MultiLine = -1 'True
ScrollBars = 2 'Vertical
TabIndex = 1
Top = 0
Width = 4716
End
Begin VB.ListBox List1
Height = 1968
ItemData = "Form5.frx":030A
Left = 0
List = "Form5.frx":031D
Sorted = -1 'True
TabIndex = 0
Top = 0
Width = 1980
End
End
Attribute VB_Name = "Form5"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Unload Me
End Sub
Private Sub List1_Click()
If List1.Text = "Scanning For Users" Then
Text1.Text = _
"To scan for a user, enter an IP Address to begin" & _
" scanning at, and one to end at (Or you can use the" & _
" default). Either way, just click scan, and MyFastTrack" & _
" will automatically scan that range of IP Addresses. As" & _
" more users are found, you will see their usernames appear" & _
" in the appropriate user list. You can control your scanning" & _
" speed using the slider bar located on the main window."
ElseIf List1.Text = "Searching For Files" Then
Text1.Text = _
"To search for files, simply click on what you want to search" & _
" for and type in what you want to find. If you don't get any" & _
" results, you can try doing the following:" & vbCrLf & "1)" & _
" Check to see that you are connected to the internet." & vbCrLf & _
"2) Try scanning a wider IP Range in order to find more users" & _
" to search." & vbCrLf & "3) Simplify your search text to a few" & _
" key words in the order they may appear."
ElseIf List1.Text = "Downloading Files" Then
Text1.Text = _
"Do download a file, you must either complete a search, or double" & _
" click on a username in the list. When you find a file you want," & _
" double click on it, and the download window will come up. If the" & _
" caption at the download window reads " & Chr(34) & "Download Aborted" & _
" Due To Error In Download" & Chr(34) & ", that means you have probably" & _
" been added to a cue on the remote server. There is nothing you can do" & _
" about this, except try again at a later time."
ElseIf List1.Text = "Download Directory" Then
Text1.Text = _
"Whenever you download a file, it is automatically placed in the same" & _
" location as this program itself. (Ex. C:\Program Files\MyFastTrack\)" & _
" in this directory, a folder called " & Chr(34) & "My Downloaded Files" & _
Chr(34) & " is created. Anything you download is put into this folder." & _
" To open this folder quickly and easily, simply click on file in the" & _
" main window, and go down until you get to a menu item that says " & Chr(34) & _
"Open Downloaded Files" & Chr(34) & "."
ElseIf List1.Text = "Cache" Then
Text1.Text = _
"Caching is useful for speeding up searches and browsing from user to user." & _
" If caching is enabled, every time you search, or view a user, a cache file" & _
" is created. If a cache file already exists in a search, MyFastTrack will" & _
" automatically open the cache file, rather than downloading the list again" & _
" If a cache file already exists when you are browsing a single user, MyFastTrack" & _
" will ask you if you would like to update the cache file, or use the existing cache" & _
" Since the users that you find with this program are constantly downloading more" & _
" things, updating the cache is a good idea. Also, clearing the cache on a regular" & _
" basis is also a good idea. To clear the cache, click on options on the main window," & _
" and click the button that says " & Chr(34) & "Clear Cache" & Chr(34) & "."
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -