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

📄 main_xtgl_xtrz.frm

📁 商品进销存管理系统 采用VB和SQL2000开发 具有很强的实用性
💻 FRM
字号:
VERSION 5.00
Object = "{3B7C8863-D78F-101B-B9B5-04021C009402}#1.2#0"; "RICHTX32.OCX"
Begin VB.Form main_xtgl_xtrz 
   BorderStyle     =   3  'Fixed Dialog
   Caption         =   "系统管理-【系统日志】"
   ClientHeight    =   4725
   ClientLeft      =   45
   ClientTop       =   330
   ClientWidth     =   7185
   Icon            =   "main_xtgl_xtrz.frx":0000
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   4725
   ScaleWidth      =   7185
   ShowInTaskbar   =   0   'False
   StartUpPosition =   1  '所有者中心
   Begin RichTextLib.RichTextBox RichTextBox1 
      Height          =   4560
      Left            =   90
      TabIndex        =   0
      Top             =   75
      Width           =   7005
      _ExtentX        =   12356
      _ExtentY        =   8043
      _Version        =   393217
      Enabled         =   -1  'True
      ReadOnly        =   -1  'True
      ScrollBars      =   2
      TextRTF         =   $"main_xtgl_xtrz.frx":038A
   End
End
Attribute VB_Name = "main_xtgl_xtrz"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'*************************************************************************
'**模 块 名:main_xtgl_xtrz
'**版权说明:吉林省明日科技有限公司享有本软件的所有版权,如果本软件用于商
'**          业用途,必须经过吉林省明日科技有限公司授权。如果提供网上免费
'**          下载,必须经过吉林省明日科技有限公司授权,并保证程序的完整,
'**          不得修改代码、注释和相关内容,否则,我公司将追究其法律责任
'**网    址:www.mingrisoft.com  价值无限,服务无限
'**电    话:(0431)84978981,84978982
'**创 建 人:明日科技
'**日    期:2007-10-31
'**修 改 人:MRLBB
'**日    期:2007-10-31
'**描    述:
'*************************************************************************

Private Sub Form_Load()
Dim intext As String
   Me.Left = (Screen.Width - Me.Width) / 2
   Me.Top = (Screen.Height - Me.Height) / 2
   RichTextBox1.Left = 0
   RichTextBox1.Top = 0
      Open (App.Path & "\系统日志.ini") For Input As #1
          Do While Not EOF(1)
               Line Input #1, intext
               RichTextBox1.text = RichTextBox1.text + intext + Chr(13) + Chr(10)
          Loop
      Close #1
End Sub

Private Sub Form_Resize()
  RichTextBox1.Width = Me.Width - 80
  RichTextBox1.Height = Me.Height - 360
End Sub


⌨️ 快捷键说明

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