frmWarnSys.frm
上传用户:yinyu8822
上传日期:2021-04-28
资源大小:79k
文件大小:2k
开发平台:

Visual Basic

  1. VERSION 5.00
  2. Begin VB.Form frmWarnSys 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    Caption         =   "防火墙警告"
  5.    ClientHeight    =   3015
  6.    ClientLeft      =   45
  7.    ClientTop       =   540
  8.    ClientWidth     =   3855
  9.    BeginProperty Font 
  10.       Name            =   "Tahoma"
  11.       Size            =   8.25
  12.       Charset         =   0
  13.       Weight          =   400
  14.       Underline       =   0   'False
  15.       Italic          =   0   'False
  16.       Strikethrough   =   0   'False
  17.    EndProperty
  18.    Icon            =   "frmWarnSys.frx":0000
  19.    LinkTopic       =   "Form1"
  20.    MaxButton       =   0   'False
  21.    MinButton       =   0   'False
  22.    ScaleHeight     =   3015
  23.    ScaleWidth      =   3855
  24.    ShowInTaskbar   =   0   'False
  25.    StartUpPosition =   2  '屏幕中心
  26.    Begin VB.CommandButton Command1 
  27.       Caption         =   "确定"
  28.       Height          =   375
  29.       Left            =   1380
  30.       TabIndex        =   3
  31.       Top             =   2580
  32.       Width           =   1095
  33.    End
  34.    Begin VB.CheckBox Check1 
  35.       Caption         =   "不再显示此对话框"
  36.       Height          =   195
  37.       Left            =   90
  38.       TabIndex        =   2
  39.       Top             =   2280
  40.       Width           =   3675
  41.    End
  42.    Begin VB.Label Label2 
  43.       Caption         =   "要打开防火墙,双击系统托盘图标或者右键选择“打开”. 要关闭请右键单击系统托盘图标,选择退出!"
  44.       Height          =   855
  45.       Left            =   60
  46.       TabIndex        =   1
  47.       Top             =   1380
  48.       Width           =   3735
  49.    End
  50.    Begin VB.Label Label1 
  51.       Caption         =   "防火墙并没有关闭,他隐藏到了系统托盘内"
  52.       Height          =   495
  53.       Left            =   60
  54.       TabIndex        =   0
  55.       Top             =   60
  56.       Width           =   3735
  57.    End
  58.    Begin VB.Image Image1 
  59.       Height          =   615
  60.       Left            =   997
  61.       Picture         =   "frmWarnSys.frx":038A
  62.       Top             =   660
  63.       Width           =   1860
  64.    End
  65. End
  66. Attribute VB_Name = "frmWarnSys"
  67. Attribute VB_GlobalNameSpace = False
  68. Attribute VB_Creatable = False
  69. Attribute VB_PredeclaredId = True
  70. Attribute VB_Exposed = False
  71. 'Download by http://www.codefans.net
  72. Private Sub Command1_Click()
  73. If Check1.Value = "1" Then modReg.bSetRegValue HKEY_LOCAL_MACHINE, SREG & "options", "warnsys", "1"
  74. Me.Hide
  75. End Sub