Exported VBA

This commit is contained in:
2022-11-14 23:29:49 +01:00
parent 6348c7d6bb
commit 789f79c2f8
134 changed files with 17682 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 gebietsnr As Long
gebietsnr = CLng(Forms!FGebiete!TWBGNR)
Forms!FGebietshierarchie.InitGebiete
Forms!FGebietshierarchie!LGebiete = gebietsnr
Forms!FGebietshierarchie.InitGrosslagen
End Sub