Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Multi-user VB.NET exe file

Status
Not open for further replies.

codemech

Programmer
Feb 8, 2004
34
US
Can I have multiple users launch a VB.NET 2003 app from the same .exe file in the same shared network folder?

Thanks,

C
 
I don't see why not. EXE's are strictly read-only, so they don't need to worry about sharing. Be carefull however of what the exe does: if it keeps a config file open in the same folder as the exe, this could lead to a sharing conflict. Try to separate between "all-users" data (read only file or carefull sharing) and data for specific users (keep on users pc, e.g. registry).
 
There are always problems doing that if you plan to update the EXE at a later time. If anyone's running it, you won't be able to replace it with a newer version.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top