J Jeff Jarrell Sep 8, 2006 #1 Is there a programmatic way to identify when code is running as a service?
P Phill W. Sep 8, 2006 #2 Jeff said: Is there a programmatic way to identify when code is running as a service? Click to expand... I've been using this ... If System.Environment.UserInteractive = False Then ' Service Mode ' Else ' something else End If HTH, Phill W.
Jeff said: Is there a programmatic way to identify when code is running as a service? Click to expand... I've been using this ... If System.Environment.UserInteractive = False Then ' Service Mode ' Else ' something else End If HTH, Phill W.
J Jeff Jarrell Sep 10, 2006 #3 that should do the trick. thanks, jeff Phill W. said: I've been using this ... If System.Environment.UserInteractive = False Then ' Service Mode ' Else ' something else End If HTH, Phill W. Click to expand...
that should do the trick. thanks, jeff Phill W. said: I've been using this ... If System.Environment.UserInteractive = False Then ' Service Mode ' Else ' something else End If HTH, Phill W. Click to expand...