Forms-Zustand und Darstellung korrigieren und Change archivieren

This commit is contained in:
2026-09-05 20:48:13 +02:00
parent 644a86212f
commit 58b1f620ea
22 changed files with 1362 additions and 101 deletions

View File

@@ -0,0 +1,26 @@
VERSION 1.00
Begin Form Form1
Begin Timer Timer1
Interval = 0
End
End
' tb-screen: 80x25
' tb-events: time:0ms
' Hostfristen: Aktivierung 1000, erstes Ereignis beendet SLEEP bei 1100 ms.
DIM SHARED n%
SLEEP 1
Timer1.Interval = 100
vor% = n%
SLEEP 1
nach% = n%
Timer1.Interval = 0
Form1.Hide
CLS
PRINT "vor="; LTRIM$(STR$(vor%))
PRINT "nach="; LTRIM$(STR$(nach%))
END
SUB Timer1_Timer()
SHARED n%
n% = n% + 1
END SUB