⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fext.frm

📁 VB版仿WinRar解压缩源代码
💻 FRM
字号:
VERSION 5.00
Object = "{F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0"; "COMDLG32.OCX"
Begin VB.Form fExt 
   BorderStyle     =   3  'Fixed Dialog
   Caption         =   "解压缩到..."
   ClientHeight    =   2055
   ClientLeft      =   45
   ClientTop       =   435
   ClientWidth     =   5460
   ForeColor       =   &H8000000F&
   Icon            =   "fExt.frx":0000
   KeyPreview      =   -1  'True
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   2055
   ScaleWidth      =   5460
   StartUpPosition =   1  '所有者中心
   WhatsThisButton =   -1  'True
   WhatsThisHelp   =   -1  'True
   Begin MSComDlg.CommonDialog CD 
      Left            =   2010
      Top             =   1230
      _ExtentX        =   847
      _ExtentY        =   847
      _Version        =   393216
   End
   Begin VB.CommandButton cmdCancel 
      Caption         =   "取消(&C)"
      Height          =   375
      Left            =   4080
      TabIndex        =   1
      Top             =   1620
      Width           =   1305
   End
   Begin VB.CommandButton cmdExtract 
      Caption         =   "解压缩(&E)"
      Default         =   -1  'True
      Height          =   375
      Left            =   4080
      TabIndex        =   0
      Top             =   1170
      Width           =   1305
   End
   Begin VB.CommandButton cmdBrowse 
      Caption         =   "..."
      Height          =   315
      Left            =   5070
      TabIndex        =   3
      Top             =   270
      Width           =   315
   End
   Begin VB.TextBox txtPath 
      Height          =   315
      Left            =   930
      TabIndex        =   2
      Text            =   "C:\WINDOWS\Temp"
      Top             =   270
      Width           =   4065
   End
   Begin VB.Image imApp 
      Height          =   720
      Left            =   90
      Picture         =   "fExt.frx":37A2
      Top             =   90
      Width           =   720
   End
End
Attribute VB_Name = "fExt"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'****************************************************************************
'人人为我,我为人人
'枕善居汉化收藏整理
'发布日期:2008/06/26
'描    述:VB版仿WinRar解压缩源代码
'网    站:http://www.Mndsoft.com/  (VB6源码博客)
'网    站:http://www.VbDnet.com/   (VB.NET源码博客,主要基于.NET2005)
'e-mail  :Mndsoft@163.com
'e-mail  :Mndsoft@126.com
'OICQ    :88382850
'          如果您有新的好的代码别忘记给枕善居哦!
'****************************************************************************

Option Explicit

Private Sub cmdCancel_Click()
    '
    Unload Me
    '
End Sub

Private Sub cmdExtract_Click()
    '
    If Dir$(txtPath.Text, vbDirectory) = "" Then: MkDir txtPath.Text
    Unload Me
        Call fMain.ExtractRAR(txtPath.Text)
    '
End Sub

Private Sub Form_KeyPress(KeyAscii As Integer)
    '
    If KeyAscii = 27 Then: Unload Me
    '
End Sub

Private Sub Form_Load()
    '
    Me.Icon = Nothing
    '
End Sub

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -