Main.frm
上传用户:davilee3
上传日期:2015-04-22
资源大小:986k
文件大小:4k
源码类别:

浏览器

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Begin VB.Form frmMain 
  3.    BorderStyle     =   1  'Fixed Single
  4.    Caption         =   "ClearCache"
  5.    ClientHeight    =   2550
  6.    ClientLeft      =   45
  7.    ClientTop       =   330
  8.    ClientWidth     =   2220
  9.    BeginProperty Font 
  10.       Name            =   "宋体"
  11.       Size            =   9
  12.       Charset         =   134
  13.       Weight          =   400
  14.       Underline       =   0   'False
  15.       Italic          =   0   'False
  16.       Strikethrough   =   0   'False
  17.    EndProperty
  18.    LinkTopic       =   "Form1"
  19.    MaxButton       =   0   'False
  20.    ScaleHeight     =   2550
  21.    ScaleWidth      =   2220
  22.    StartUpPosition =   2  'CenterScreen
  23.    Begin VB.CommandButton cmdHelp 
  24.       Caption         =   "帮助(&H)"
  25.       Height          =   450
  26.       Left            =   60
  27.       TabIndex        =   4
  28.       Top             =   2040
  29.       Width           =   2100
  30.    End
  31.    Begin VB.CommandButton cmdNormal 
  32.       Caption         =   "删除缓存文件(&F)"
  33.       Height          =   450
  34.       Left            =   60
  35.       TabIndex        =   0
  36.       Top             =   0
  37.       Width           =   2100
  38.    End
  39.    Begin VB.CommandButton cmdClearAll 
  40.       Caption         =   "删除所有(&A)"
  41.       Height          =   450
  42.       Left            =   60
  43.       TabIndex        =   3
  44.       Top             =   1440
  45.       Width           =   2100
  46.    End
  47.    Begin VB.CommandButton cmdUrlHis 
  48.       Caption         =   "清除访问过的链接(&V)"
  49.       BeginProperty Font 
  50.          Name            =   "新宋体"
  51.          Size            =   9
  52.          Charset         =   134
  53.          Weight          =   400
  54.          Underline       =   0   'False
  55.          Italic          =   0   'False
  56.          Strikethrough   =   0   'False
  57.       EndProperty
  58.       Height          =   450
  59.       Left            =   60
  60.       TabIndex        =   2
  61.       Top             =   960
  62.       Width           =   2100
  63.    End
  64.    Begin VB.CommandButton cmdClearCookie 
  65.       Caption         =   "删除&Cookie"
  66.       BeginProperty Font 
  67.          Name            =   "新宋体"
  68.          Size            =   9
  69.          Charset         =   134
  70.          Weight          =   400
  71.          Underline       =   0   'False
  72.          Italic          =   0   'False
  73.          Strikethrough   =   0   'False
  74.       EndProperty
  75.       Height          =   450
  76.       Left            =   60
  77.       TabIndex        =   1
  78.       Top             =   480
  79.       Width           =   2100
  80.    End
  81. End
  82. Attribute VB_Name = "frmMain"
  83. Attribute VB_GlobalNameSpace = False
  84. Attribute VB_Creatable = False
  85. Attribute VB_PredeclaredId = True
  86. Attribute VB_Exposed = False
  87. Option Explicit
  88. Private Sub cmdClearAll_Click()
  89. Call DelCache("*.*")
  90. End Sub
  91. Private Sub cmdClearCookie_Click()
  92. Call DelCache("cookie:")
  93. End Sub
  94. Private Sub cmdHelp_Click()
  95. Dim tStr$
  96. tStr = "ClearCache Ver 1.0." & LTrim(Str(App.Revision)) & vbNewLine & _
  97.     vbNewLine & "用于删除ie缓存文件,cookie等" & vbNewLine & _
  98.     vbNewLine & "命令行参数:" & vbNewLine & _
  99.     "normal : 删除缓存文件" & vbNewLine & _
  100.     "cookie : 删除cookie" & vbNewLine & _
  101.     "visited : 清除访问过的链接历史记录" & vbNewLine & _
  102.     "all : 清除所有,以上三个功能的叠加" & vbNewLine & _
  103.     vbNewLine & "by lingll" & vbNewLine & "lingll.yeah.net"
  104.     
  105. MsgBox tStr, vbOKOnly
  106. End Sub
  107. Private Sub cmdNormal_Click()
  108. Call DelCache("*.*", URLHISTORY_CACHE_ENTRY Or COOKIE_CACHE_ENTRY)
  109. End Sub
  110. Private Sub cmdUrlHis_Click()
  111. Call DelCache("visited:")
  112. End Sub
  113. Private Sub TestCacheType(vType&)
  114. 'If (vType And COOKIE_CACHE_ENTRY) <> 0 Then
  115. '    Debug.Print "cookie",
  116. 'End If
  117. '
  118. 'If (vType And URLHISTORY_CACHE_ENTRY) <> 0 Then
  119. '    Debug.Print "history",
  120. 'End If
  121. '
  122. 'If (vType And NORMAL_CACHE_ENTRY) <> 0 Then
  123. '    Debug.Print "normal",
  124. 'End If
  125. '
  126. 'If (vType And TRACK_OFFLINE_CACHE_ENTRY) <> 0 Then
  127. '    Debug.Print "offline",
  128. 'End If
  129. 'If (vType And TRACK_ONLINE_CACHE_ENTRY) <> 0 Then
  130. '    Debug.Print "online",
  131. 'End If
  132. 'Debug.Print
  133. End Sub