Click here to Skip to main content
15,923,557 members
Home / Discussions / C#
   

C#

 
Generalpdf rotated text w/ Acrobat 6.0 Pin
bwagz19-Jan-05 9:53
bwagz19-Jan-05 9:53 
Generalcreate reg_expand_sz key in registry Pin
KrissR19-Jan-05 9:31
KrissR19-Jan-05 9:31 
GeneralRe: create reg_expand_sz key in registry Pin
Heath Stewart20-Jan-05 5:55
protectorHeath Stewart20-Jan-05 5:55 
GeneralRe: create reg_expand_sz key in registry Pin
Dave Kreskowiak20-Jan-05 13:12
mveDave Kreskowiak20-Jan-05 13:12 
Generalpdf as BackGroundImage Pin
Anonymous19-Jan-05 8:13
Anonymous19-Jan-05 8:13 
GeneralRe: pdf as BackGroundImage Pin
Heath Stewart19-Jan-05 8:33
protectorHeath Stewart19-Jan-05 8:33 
GeneralWindows Service Pin
DotNetAppDeveloper19-Jan-05 7:39
DotNetAppDeveloper19-Jan-05 7:39 
GeneralRe: Windows Service Pin
Heath Stewart19-Jan-05 8:08
protectorHeath Stewart19-Jan-05 8:08 
You either need to run the service as a particular user with interactive login privileges (and then the Windows application will only run in their Windows station), or you need to mark your service as being interactive. This is a manual process, since there is no support currently in the ServiceInstaller or ServiceProcessInstaller, which you use in conjunction with your own Installer class.

A good way to do this is in your override to Installer.Install, use the Registry and RegistryKey classes to open the key for your service, which is HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\<YourServiceName>, and bitware OR the Type value with 256 (for interactive login). This is only if you run the service as SYSTEM, i.e. setting ServiceProcessInstaller.Username to "", or String.Empty (which decreases binary size and load times insignificantly).

This posting is provided "AS IS" with no warranties, and confers no rights.

Software Design Engineer
Developer Division Sustained Engineering
Microsoft

[My Articles] [My Blog]
GeneralRe: Windows Service Pin
DotNetAppDeveloper19-Jan-05 9:17
DotNetAppDeveloper19-Jan-05 9:17 
GeneralCalling COM interface from C# Pin
shayw19-Jan-05 7:36
shayw19-Jan-05 7:36 
GeneralRe: Calling COM interface from C# Pin
Heath Stewart19-Jan-05 7:56
protectorHeath Stewart19-Jan-05 7:56 
GeneralRe: Calling COM interface from C# Pin
shayw19-Jan-05 8:20
shayw19-Jan-05 8:20 
GeneralRe: Calling COM interface from C# Pin
Heath Stewart19-Jan-05 8:27
protectorHeath Stewart19-Jan-05 8:27 
GeneralRe: Calling COM interface from C# Pin
shayw19-Jan-05 8:48
shayw19-Jan-05 8:48 
GeneralRe: Calling COM interface from C# Pin
Heath Stewart19-Jan-05 8:54
protectorHeath Stewart19-Jan-05 8:54 
GeneralRe: Calling COM interface from C# Pin
shayw20-Jan-05 7:36
shayw20-Jan-05 7:36 
GeneralRe: Calling COM interface from C# Pin
Heath Stewart20-Jan-05 9:35
protectorHeath Stewart20-Jan-05 9:35 
GeneralAccess COM Collection using InvokeMethod Pin
dlgussin19-Jan-05 5:19
dlgussin19-Jan-05 5:19 
GeneralRe: Access COM Collection using InvokeMethod Pin
Heath Stewart19-Jan-05 7:45
protectorHeath Stewart19-Jan-05 7:45 
GeneralRe: Access COM Collection using InvokeMethod Pin
dlgussin19-Jan-05 9:05
dlgussin19-Jan-05 9:05 
GeneralRe: Access COM Collection using InvokeMethod Pin
dlgussin19-Jan-05 15:59
dlgussin19-Jan-05 15:59 
GeneralSMTP Question Pin
WDI19-Jan-05 4:01
WDI19-Jan-05 4:01 
GeneralRe: SMTP Question Pin
Judah Gabriel Himango19-Jan-05 4:42
sponsorJudah Gabriel Himango19-Jan-05 4:42 
GeneralRe: SMTP Question Pin
Heath Stewart19-Jan-05 7:35
protectorHeath Stewart19-Jan-05 7:35 
GeneralExtended Context Menu Pin
realmontanakid19-Jan-05 3:37
realmontanakid19-Jan-05 3:37 

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.