You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
867 B
Plaintext

VERSION 5.00
Begin VB.Form FCentral
BorderStyle = 0 'Kein
Caption = "Form1"
ClientHeight = 11520
ClientLeft = 0
ClientTop = 0
ClientWidth = 15360
ControlBox = 0 'False
LinkTopic = "Form1"
ScaleHeight = 11520
ScaleWidth = 15360
StartUpPosition = 2 'Bildschirmmitte
WindowState = 2 'Maximiert
Begin VB.CommandButton cmdEnd
Caption = "End"
Height = 435
Left = 480
TabIndex = 0
Top = 600
Width = 1095
End
End
Attribute VB_Name = "FCentral"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub cmdEnd_Click()
EndProgram
End Sub