Thank you for posting this, it was exactly what I was looking for! I am running into an error where if the user deletes their name the form gives an error message "Update or Cancel/Update w/out Add/New or Edit" is there anyway to make this stop coming up? I am using your code to autofill in who made a change on a line, but it may get filled in in error. I have the code on the "On Lost Focus" event. Any help would be greatly appreciated, thanks!
Glad it worked for you! Yes, you can go to the properties of the text box under data and set the Locked property to Yes and it will stop them from editing/removing their name. You can also set Enabled to No (this will grey it out though).
You can use a function like this to get the IP: Function IpAddress() Dim objNics, objNic, strIP, strComputer, strIps Set objNics = GetObject("winmgmts:").InstancesOf("Win32_NetworkAdapterConfiguration") For Each objNic in objNics if objNic.IPEnabled then strIP = objNic.IPAddress(0) If Len(strIps) > 0 Then strIps = strIps & "," strIps = strIps & strIP End if Next IpAddress = strIps End Function To use it, load your variable: strIp = IpAddress() MsgBox strIP or do what you want with it!
This is fantastically useful stuff (like all of your videos). I'd like to request a video on how to obtain a user's email address from the GAL in Outlook if you would. Keep on doing what you do, it's EXTREMELY helpful to a rookie Access developer like me. 😎
1-Handy hint. I have being using second option = environ variable with computer name 2-Any trick to get the Full name than the login name!!!! Or user email address 3-User logger also very handy I get login time and log off time 4- Could not find it in the Download page appreciate if you add it so that I could get it into my collection As always appreciate your knowledge base contribution Cheers 🏃🏽
Thanks for the feedback! The downloads page has been updated. Getting more information about the user is possible through a LDAP query if you're in a domain, but that is another function that we will have to explore in another video. I'll add it to my list. cheers
@@seanmackenziedataengineering I took this tutorial and the one "How to Kick Users out of Your MS Access Database" because I would like to create a log file of accesses and exits from the database. Obviously I divided the DB into FE and BE. Am I on the right track? ps: i follow you from Italy!
Thank you for posting this, it was exactly what I was looking for! I am running into an error where if the user deletes their name the form gives an error message "Update or Cancel/Update w/out Add/New or Edit" is there anyway to make this stop coming up? I am using your code to autofill in who made a change on a line, but it may get filled in in error. I have the code on the "On Lost Focus" event. Any help would be greatly appreciated, thanks!
Glad it worked for you! Yes, you can go to the properties of the text box under data and set the Locked property to Yes and it will stop them from editing/removing their name. You can also set Enabled to No (this will grey it out though).
thanks for the video , it was really great , can you please show how to get the ip address for the device of the user ?
You can use a function like this to get the IP:
Function IpAddress()
Dim objNics, objNic, strIP, strComputer, strIps
Set objNics = GetObject("winmgmts:").InstancesOf("Win32_NetworkAdapterConfiguration")
For Each objNic in objNics
if objNic.IPEnabled then
strIP = objNic.IPAddress(0)
If Len(strIps) > 0 Then strIps = strIps & ","
strIps = strIps & strIP
End if
Next
IpAddress = strIps
End Function
To use it, load your variable:
strIp = IpAddress()
MsgBox strIP
or do what you want with it!
Thanks so much, great video.
My pleasure!
You’re a life saver
Thank you
Glad it worked!
Thanks, this was good!
Glad you liked it!
Great excactly I was waiting for
Glad to hear that! cheers
wow. cool solution.
Sir please make a video on COM control in access. how get data into a table from COM PORT.
That's a great idea - I'll put that on my list! thanks!
Thank you!!! I was wanting to learn this.
Glad I could help! cheers
This is fantastically useful stuff (like all of your videos). I'd like to request a video on how to obtain a user's email address from the GAL in Outlook if you would. Keep on doing what you do, it's EXTREMELY helpful to a rookie Access developer like me. 😎
Great suggestion! And I'll add that one to my list! cheers
1-Handy hint. I have being using second option = environ variable with computer name
2-Any trick to get the Full name than the login name!!!! Or user email address
3-User logger also very handy I get login time and log off time
4- Could not find it in the Download page appreciate if you add it so that I could get it into my collection
As always appreciate your knowledge base contribution
Cheers 🏃🏽
Thanks for the feedback! The downloads page has been updated. Getting more information about the user is possible through a LDAP query if you're in a domain, but that is another function that we will have to explore in another video. I'll add it to my list. cheers
Can you get Windows Password like Username ?!!🙂
No, I'm afraid not!
I can imagine that this "function" could be used when closing the mask! @seanmackenziedataengineering
Thanks for sharing!
@@seanmackenziedataengineering I took this tutorial and the one "How to Kick Users out of Your MS Access Database" because I would like to create a log file of accesses and exits from the database. Obviously I divided the DB into FE and BE. Am I on the right track? ps: i follow you from Italy!
@@alessiosonis981 You bet! You can use this one th-cam.com/video/Rqhlr6NwUu8/w-d-xo.html to log the time a form is closed.