Click here to Skip to main content
15,887,027 members
Home / Discussions / C#
   

C#

 
GeneralRe: Get method name as string Pin
Nicholas Butler30-Jul-08 0:36
sitebuilderNicholas Butler30-Jul-08 0:36 
AnswerRe: Get method name as string Pin
DaveyM6930-Jul-08 1:09
professionalDaveyM6930-Jul-08 1:09 
GeneralRe: Get method name as string Pin
leppie30-Jul-08 2:27
leppie30-Jul-08 2:27 
QuestionControl.Invoke() equivalent with Thread object Pin
ccufi29-Jul-08 23:36
ccufi29-Jul-08 23:36 
AnswerRe: Control.Invoke() equivalent with Thread object Pin
Frank Horn30-Jul-08 0:36
Frank Horn30-Jul-08 0:36 
AnswerRe: Control.Invoke() equivalent with Thread object Pin
Alan N30-Jul-08 4:55
Alan N30-Jul-08 4:55 
QuestionHow to run application from network folder Pin
AndrusM29-Jul-08 23:12
AndrusM29-Jul-08 23:12 
AnswerRe: How to run application from network folder Pin
Simon P Stevens29-Jul-08 23:47
Simon P Stevens29-Jul-08 23:47 
It's because of the trust level assigned to the app.

.net exe files run off of a network share are assigned a low trust level. (As opposed to full trust when run locally). If you want your app to automatically just work from a network share you need to design it so it doesn't require full trust. This means you can't do anything like writing to the local file system, using the registry, and a whole bunch of other stuff. (There are often alternatives, like you could use isolated storage for settings instead of the registry).

Or, you can adjust the security to either explicitly trust a specific strong name signed assembly, no matter where is it run from[^] or explicitly allow full trust for apps run from a given network location[^]

Simon

GeneralRe: How to run application from network folder Pin
AndrusM30-Jul-08 0:25
AndrusM30-Jul-08 0:25 
GeneralRe: How to run application from network folder Pin
Simon P Stevens30-Jul-08 1:16
Simon P Stevens30-Jul-08 1:16 
GeneralRe: How to run application from network folder Pin
AndrusM30-Jul-08 1:22
AndrusM30-Jul-08 1:22 
GeneralRe: How to run application from network folder Pin
Simon P Stevens30-Jul-08 1:34
Simon P Stevens30-Jul-08 1:34 
GeneralRe: How to run application from network folder Pin
AndrusM30-Jul-08 7:25
AndrusM30-Jul-08 7:25 
GeneralRe: How to run application from network folder Pin
Simon P Stevens30-Jul-08 21:30
Simon P Stevens30-Jul-08 21:30 
GeneralRe: How to run application from network folder Pin
AndrusM30-Jul-08 22:38
AndrusM30-Jul-08 22:38 
GeneralRe: How to run application from network folder Pin
AndrusM30-Jul-08 1:35
AndrusM30-Jul-08 1:35 
GeneralRe: How to run application from network folder Pin
Simon P Stevens30-Jul-08 1:41
Simon P Stevens30-Jul-08 1:41 
GeneralRe: How to run application from network folder Pin
AndrusM30-Jul-08 7:27
AndrusM30-Jul-08 7:27 
GeneralRe: How to run application from network folder Pin
mav.northwind30-Jul-08 19:03
mav.northwind30-Jul-08 19:03 
GeneralRe: How to run application from network folder Pin
AndrusM30-Jul-08 23:02
AndrusM30-Jul-08 23:02 
GeneralRe: How to run application from network folder Pin
mav.northwind31-Jul-08 8:36
mav.northwind31-Jul-08 8:36 
GeneralRe: How to run application from network folder Pin
AndrusM31-Jul-08 9:13
AndrusM31-Jul-08 9:13 
GeneralRe: How to run application from network folder Pin
mav.northwind31-Jul-08 18:22
mav.northwind31-Jul-08 18:22 
GeneralRe: How to run application from network folder Pin
AndrusM31-Jul-08 23:16
AndrusM31-Jul-08 23:16 
QuestionAuto Updater under Vista Pin
Markus Mayer29-Jul-08 23:02
Markus Mayer29-Jul-08 23:02 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.