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,26 @@
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 RNR As Long
RNR = CLng(Forms!FRiede!TRNR)
Forms!FGebietshierarchie.InitRiede
Forms!FGebietshierarchie!LRiede = RNR
End Sub