Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Finding the Username of a user who has a shared Network file open.

How can I find the Username of the user who has a shared
network Excel file open, using VBA.


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 214
Default Finding the Username of a user who has a shared Network file open.

Hi Ken,
Sub UsersList()
Dim users, msg As String
users = Workbooks("MyBook.xls").UserStatus
For Row = 1 To UBound(users, 1)
msg = msg & users(Row, 1)
Next
MsgBox msg, 64
End Sub

Regards,
MP

"Ken" a écrit dans le message de
...
How can I find the Username of the user who has a shared
network Excel file open, using VBA.




Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Shared document will not open for user forbes Excel Discussion (Misc queries) 1 March 14th 08 03:54 PM
Shared workbook, on network, file lock markb72 Excel Discussion (Misc queries) 0 September 28th 07 02:40 AM
Edited links keep reverting when we save a shared network file. Michael Stabosz Excel Discussion (Misc queries) 1 November 29th 06 03:38 PM
shared workbook, local temp-file and network traffic petri Excel Discussion (Misc queries) 0 September 12th 05 10:51 PM
Protect file on a shared Network drive Stuart[_5_] Excel Programming 2 July 16th 04 03:27 PM


All times are GMT +1. The time now is 11:21 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"