I have about 10 forms in my access and in all of them I need to put some basic information like, date and user, to do that I use the same code on all forms, I'm searching a form to set this information and just call
vba now
Private sub Form_Load()
Dim userId As String
userId = Environ("Username")
Dim uSer As String
uSer = DLookup("User", "Adm_User", "UserId='" & Environ$("Username") & "'")
Dim dtNow as string
dtNow = Format(Now, "dd/mm/yyyy hh:mm")
me.text_userId.Caption = userId
me.text_uSer.Caption = uSer
me.text_dtNow.Caption = dtNow
vba that i want
Public Const userId As String = Environ("Username")
Public Const uSer As Variant = DLookup("User", "Adm_User", "UserId='" & Environ$("Username") & "'")
Public Const dtNow As String = Format(Now, "dd/mm/yyyy hh:mm")
Private sub Form_Load()
me.text_userId.Caption = userId
me.text_uSer.Caption = uSer
me.text_dtNow.Caption = dtNow
The simple method is to keep a set of functions in a "Common" module:
Then call these at the form load: