📄 frmexist.frm
字号:
VERSION 5.00
Begin VB.Form frmExist
BorderStyle = 4 'Fixed ToolWindow
Caption = "文件已存在!"
ClientHeight = 1260
ClientLeft = 45
ClientTop = 285
ClientWidth = 4380
ForeColor = &H8000000F&
Icon = "frmExist.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1260
ScaleWidth = 4380
ShowInTaskbar = 0 'False
StartUpPosition = 1 '所有者中心
Begin VB.CommandButton cmdCancel
Caption = "取消(&C)"
Height = 375
Left = 2760
TabIndex = 3
Top = 720
Width = 1215
End
Begin VB.CommandButton cmdResume
Caption = "继续(&R)"
Height = 375
Left = 1560
TabIndex = 2
Top = 720
Width = 1215
End
Begin VB.CommandButton cmdOverwrite
Caption = "覆盖(&O)"
Height = 375
Left = 360
TabIndex = 1
Top = 720
Width = 1215
End
Begin VB.Label Label1
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "文件已存在,你想要?"
BeginProperty Font
Name = "Tahoma"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 210
Left = 240
TabIndex = 0
Top = 240
Width = 1590
End
End
Attribute VB_Name = "frmExist"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'/**********************************************************************
' 在线升级程序,海阔天空
' Play78.com : 网站导航,源码之家,绝对开源
' 海阔天空收集整理
' http://www.play78.com/
' e-mail:hglai@eyou.com
' **********************************************************************
Option Explicit
Private Sub cmdCancel_Click()
Unload Me
Unload frmSave
End Sub
Private Sub cmdOverwrite_Click()
Kill FilePathName
RESUMEFILE = False
frmDownload.CloseSocket
frmDownload.Winsock.Connect strSvrURL, 80
Unload Me
Unload frmSave
End Sub
Private Sub cmdResume_Click()
RESUMEFILE = True
frmDownload.CloseSocket
FileLength = FileLen(FilePathName)
frmDownload.Winsock.Connect strSvrURL, 80
Unload Me
Unload frmSave
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -