81 lines
2.2 KiB
Plaintext
81 lines
2.2 KiB
Plaintext
VERSION 5.00
|
|
Begin VB.Form frmShow
|
|
AutoRedraw = -1 'True
|
|
BackColor = &H8000000D&
|
|
BorderStyle = 0 'Kein
|
|
Caption = "Pruef2000"
|
|
ClientHeight = 690
|
|
ClientLeft = 0
|
|
ClientTop = 0
|
|
ClientWidth = 4650
|
|
LinkTopic = "Form1"
|
|
ScaleHeight = 690
|
|
ScaleWidth = 4650
|
|
ShowInTaskbar = 0 'False
|
|
StartUpPosition = 1 'Fenstermitte
|
|
Begin VB.Timer Timer1
|
|
Left = 300
|
|
Top = 360
|
|
End
|
|
Begin VB.Label lblMsg
|
|
Alignment = 2 'Zentriert
|
|
BackColor = &H8000000D&
|
|
Caption = "Diese Anwendung wurde aktiviert"
|
|
BeginProperty Font
|
|
Name = "MS Sans Serif"
|
|
Size = 12
|
|
Charset = 0
|
|
Weight = 700
|
|
Underline = 0 'False
|
|
Italic = 0 'False
|
|
Strikethrough = 0 'False
|
|
EndProperty
|
|
ForeColor = &H8000000E&
|
|
Height = 1275
|
|
Left = 180
|
|
TabIndex = 0
|
|
Top = 120
|
|
Width = 4275
|
|
End
|
|
End
|
|
Attribute VB_Name = "frmShow"
|
|
Attribute VB_GlobalNameSpace = False
|
|
Attribute VB_Creatable = False
|
|
Attribute VB_PredeclaredId = True
|
|
Attribute VB_Exposed = False
|
|
Option Explicit
|
|
'==============================================================================
|
|
'
|
|
' File : frmShow.frm
|
|
' Date : 16.07.1999
|
|
' Version: 0.01
|
|
' Author : Reinhard Henning, lindner&partner
|
|
'
|
|
'==============================================================================
|
|
'
|
|
' Formular zur Aktivierung der Applikation
|
|
'
|
|
'==============================================================================
|
|
' Setzt eine kurze Meldung auf den Bildschirm und aktiviert damit
|
|
' die ganze Applikation
|
|
'==============================================================================
|
|
|
|
Private Sub Form_Activate()
|
|
'Timer1.Enabled = False
|
|
'Unload Me
|
|
End Sub
|
|
|
|
Private Sub Form_Load()
|
|
On Error Resume Next
|
|
Timer1.Interval = 500
|
|
AppActivate "Pruef2000", False
|
|
Me.SetFocus
|
|
Timer1.Enabled = True
|
|
End Sub
|
|
|
|
|
|
Private Sub Timer1_Timer()
|
|
Timer1.Enabled = False
|
|
Unload Me
|
|
End Sub
|