8
0

Anlage des Repos

This commit is contained in:
2024-01-24 16:42:38 +01:00
commit 38d6a271c4
1785 changed files with 3051496 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
' SetLabelText(LabelItemID : Short, View: Long, Var: Long, Value: String)
' ----------------------------------------------------------------------------
' Setzt den Text eines Labels im aktuellen Fenster
'
' Returns: -
' ----------------------------------------------------------------------------
' Copyright (c) 2021 by Digital Data GmbH
'
' Digital Data GmbH • Ludwig-Rinn-Strasse 16 • D-35452 Heuchelheim
' Tel.: 0641/202360 • E-Mail: info-flow(at)digitaldata.works
' ----------------------------------------------------------------------------
' Creation Date / Author: 01.09.2020 / JJ
' Version Date / Editor: 24.02.2021 / MP
' Version Number: 3.0.0.0
Sub SetLabelText(LabelItemID, View, Var, Value)
Set mywin = CWLStart.CurrentModule.Windows.Item(WINDOW_ID)
Set labelBox = mywin.Controls.Item(LabelItemID)
CWLCurrentWindow.ActiveWindow.Vars.Value(View, Var) = Value
labelBox.Refresh
End Sub