【VB开源代码栏目提醒】:网学会员VB开源代码为您提供main_xtgl_xtrz.frm参考,解决您在main_xtgl_xtrz.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