wordfindform.frm

来自「供销信息查询系统」· FRM 代码 · 共 99 行

FRM
99
字号
VERSION 5.00
Begin VB.Form wordfindform 
   AutoRedraw      =   -1  'True
   Caption         =   "字段查找"
   ClientHeight    =   1110
   ClientLeft      =   6165
   ClientTop       =   2385
   ClientWidth     =   4110
   Icon            =   "wordfindform.frx":0000
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MDIChild        =   -1  'True
   MinButton       =   0   'False
   PaletteMode     =   2  'Custom
   ScaleHeight     =   1110
   ScaleWidth      =   4110
   ShowInTaskbar   =   0   'False
   Begin VB.CommandButton Command2 
      Caption         =   "取 消"
      Height          =   375
      Left            =   2760
      TabIndex        =   3
      Top             =   600
      Width           =   1215
   End
   Begin VB.CommandButton Command1 
      Caption         =   "查 找"
      Height          =   375
      Left            =   2760
      TabIndex        =   2
      Top             =   120
      Width           =   1215
   End
   Begin VB.TextBox Text1 
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   10.5
         Charset         =   134
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   375
      Left            =   120
      TabIndex        =   1
      Top             =   600
      Width           =   2415
   End
   Begin VB.Label Label1 
      Caption         =   "请输入查找字段:"
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   14.25
         Charset         =   134
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   495
      Left            =   120
      TabIndex        =   0
      Top             =   120
      Width           =   2295
   End
End
Attribute VB_Name = "wordfindform"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Call findword
End Sub

Private Sub Command2_Click()
Unload Me
End Sub

Private Sub Form_Activate()
mainform.Enabled = False
End Sub

Private Sub Form_Load()
wordfindform1 = 1
mainmdiform.StatusBar1.SimpleText = "正在查找... ...字段"
End Sub

Private Sub Form_Resize()
wordfindform.Width = 4230
wordfindform.Height = 1515
End Sub

Private Sub Form_Unload(Cancel As Integer)
mainform.Enabled = True
mainmdiform.StatusBar1.SimpleText = "正在... ..."
End Sub

⌨️ 快捷键说明

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