Post User Data to Website
I have built a large workbook with dozens of macros that is accessed and used by several users internationally.
I'm interested in getting some useage statistics for this 'program.' Just getting into more complex VBA code writing, I have the following code launched when the workbook is opened:
Dim computerName As String
Dim userName As String
computerName = Environ$("computername")
userName = Environ$("username")
Can anyone educate me on how I can take this information (computer name and user name) and FTP it to my web server with a date/time stamp so I can see who and how often these workbooks are opened?
Thanks in advance for any and all help!
|