Move wgmaster/vba/Form_* to wgmaster/vba/form/*

This commit is contained in:
2023-08-14 18:45:15 +02:00
parent ec9531b1fa
commit f7efd93c59
63 changed files with 0 additions and 0 deletions

View File

@ -0,0 +1,27 @@
Option Compare Database
Option Explicit
Private Sub Form_Close()
RefreshMain
End Sub
Private Sub TBezeichnung_Exit(Cancel As Integer)
RefreshMain
End Sub
Sub RefreshMain()
Dim GLNR As Long
GLNR = CLng(Forms!FGrosslagen!TGLNR)
Forms!FGebietshierarchie.InitGrosslagen
Forms!FGebietshierarchie!LGrosslagen = GLNR
Forms!FGebietshierarchie.InitGemeinden
End Sub