laatzen/Pruef2000/source/frmLog.frm
2021-10-01 11:11:04 +02:00

56 lines
1.4 KiB
Plaintext

VERSION 5.00
Begin VB.Form frmLogWin
Caption = "Pruef2000"
ClientHeight = 7755
ClientLeft = 60
ClientTop = 345
ClientWidth = 9870
LinkTopic = "Form1"
ScaleHeight = 7755
ScaleWidth = 9870
StartUpPosition = 3 'Windows-Standard
Begin VB.CommandButton cmdOK
Caption = "Schließen"
Height = 615
Left = 8460
TabIndex = 1
Top = 7080
Width = 1335
End
Begin VB.TextBox Text1
Height = 7455
Left = 240
MultiLine = -1 'True
ScrollBars = 2 'Vertikal
TabIndex = 0
Top = 180
Width = 8055
End
End
Attribute VB_Name = "frmLogWin"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub cmdOK_Click()
Me.Hide
End Sub
Public Sub Logtext(sText As String)
Text1.Text = Text1.Text & sText & vbCrLf
Text1.SelStart = Len(Text1.Text)
End Sub
Private Sub Form_Resize()
On Error Resume Next
Text1.Width = Me.ScaleWidth
Text1.Height = Me.ScaleHeight - cmdOK.Height
cmdOK.Left = Me.ScaleWidth - cmdOK.Width
cmdOK.Top = Me.ScaleHeight - cmdOK.Height
Text1.Top = 0
Text1.Left = 0
On Error GoTo 0
End Sub