G
Guest
I have a module that finds the windows user id. I want to be able to call
that module and have it populate a text box on a form with the user id that I
use for data entry. I have tried:
Private Sub Test_1_AfterUpdate()
Dim stmodule As String
stmodule = fOSUserName()
Me.IB.Value = stmodule
Where fOSUserName() is the module (Yes I borrowed the code).
Any suggestions?
that module and have it populate a text box on a form with the user id that I
use for data entry. I have tried:
Private Sub Test_1_AfterUpdate()
Dim stmodule As String
stmodule = fOSUserName()
Me.IB.Value = stmodule
Where fOSUserName() is the module (Yes I borrowed the code).
Any suggestions?