Click here to Skip to main content
15,916,945 members
Home / Discussions / C#
   

C#

 
QuestionHow to programmatically set the focus on a selected tree node? Pin
bouli10-Aug-05 4:18
bouli10-Aug-05 4:18 
AnswerRe: How to programmatically set the focus on a selected tree node? Pin
Ankit Sgl10-Aug-05 4:26
Ankit Sgl10-Aug-05 4:26 
GeneralRe: How to programmatically set the focus on a selected tree node? Pin
bouli10-Aug-05 5:22
bouli10-Aug-05 5:22 
GeneralStopping Window Service to start Pin
Ankit Sgl10-Aug-05 4:11
Ankit Sgl10-Aug-05 4:11 
AnswerRe: Stopping Window Service to start Pin
Heath Stewart10-Aug-05 5:06
protectorHeath Stewart10-Aug-05 5:06 
Generalwindows service Pin
horacyjr10-Aug-05 3:18
horacyjr10-Aug-05 3:18 
GeneralRe: windows service Pin
Darryl Borden10-Aug-05 3:56
Darryl Borden10-Aug-05 3:56 
GeneralRe: windows service Pin
horacyjr10-Aug-05 4:10
horacyjr10-Aug-05 4:10 
this is my code in windows application, that calls the other project the windows application

class ServiceInstaller
{
#region Private Variables

private string _servicePath;
private string _serviceName;
private string _serviceDisplayName;

#endregion Private Variables

#region DLLImport

[DllImport("advapi32.dll")]
public static extern IntPtr OpenSCManager(string lpMachineName,string lpSCDB, int scParameter);
[DllImport("Advapi32.dll")]
public static extern IntPtr CreateService(IntPtr SC_HANDLE,string lpSvcName,string lpDisplayName,
int dwDesiredAccess,int dwServiceType,int dwStartType,int dwErrorControl,string lpPathName,
string lpLoadOrderGroup,int lpdwTagId,string lpDependencies,string lpServiceStartName,string lpPassword);
[DllImport("advapi32.dll")]
public static extern void CloseServiceHandle(IntPtr SCHANDLE);
[DllImport("advapi32.dll")]
public static extern int StartService(IntPtr SVHANDLE,int dwNumServiceArgs,string lpServiceArgVectors);

[DllImport("advapi32.dll",SetLastError=true)]
public static extern IntPtr OpenService(IntPtr SCHANDLE,string lpSvcName,int dwNumServiceArgs);
[DllImport("advapi32.dll")]
public static extern int DeleteService(IntPtr SVHANDLE);

[DllImport("kernel32.dll")]
public static extern int GetLastError();

#endregion DLLImport

public bool InstallService(string svcPath, string svcName, string svcDispName)
{
#region Constants declaration.
int SC_MANAGER_CREATE_SERVICE = 0x0002;
int SERVICE_WIN32_OWN_PROCESS = 0x00000010;
//int SERVICE_DEMAND_START = 0x00000003;
int SERVICE_ERROR_NORMAL = 0x00000001;

int STANDARD_RIGHTS_REQUIRED = 0xF0000;
int SERVICE_QUERY_CONFIG = 0x0001;
int SERVICE_CHANGE_CONFIG = 0x0002;
int SERVICE_QUERY_STATUS = 0x0004;
int SERVICE_ENUMERATE_DEPENDENTS = 0x0008;
int SERVICE_START =0x0010;
int SERVICE_STOP =0x0020;
int SERVICE_PAUSE_CONTINUE =0x0040;
int SERVICE_INTERROGATE =0x0080;
int SERVICE_USER_DEFINED_CONTROL =0x0100;

int SERVICE_ALL_ACCESS = (STANDARD_RIGHTS_REQUIRED |
SERVICE_QUERY_CONFIG |
SERVICE_CHANGE_CONFIG |
SERVICE_QUERY_STATUS |
SERVICE_ENUMERATE_DEPENDENTS |
SERVICE_START |
SERVICE_STOP |
SERVICE_PAUSE_CONTINUE |
SERVICE_INTERROGATE |
SERVICE_USER_DEFINED_CONTROL);
int SERVICE_AUTO_START = 0x00000002;
#endregion Constants declaration.

try
{
IntPtr sc_handle = OpenSCManager(null,null,SC_MANAGER_CREATE_SERVICE);

if (sc_handle.ToInt32() != 0)
{
IntPtr sv_handle = CreateService(sc_handle,svcName,svcDispName,SERVICE_ALL_ACCESS,SERVICE_WIN32_OWN_PROCESS, SERVICE_AUTO_START,SERVICE_ERROR_NORMAL,svcPath,null,0,null,null,null);

if(sv_handle.ToInt32() ==0)
{
CloseServiceHandle(sc_handle);
return false;
}
else
{
//now trying to start the service
int i = StartService(sv_handle,0,null);
// If the value i is zero, then there was an error starting the service.
// note: error may arise if the service is already running or some other problem.
if(i==0)
{
//Console.WriteLine("Couldnt start service");
return false;
}
//Console.WriteLine("Success");
CloseServiceHandle(sc_handle);
return true;
}
}
else
//Console.WriteLine("SCM not opened successfully");
return false;

}
catch(Exception e)
{
throw e;
}
}



public bool UnInstallService(string svcName)
{
int GENERIC_WRITE = 0x40000000;
IntPtr sc_hndl = OpenSCManager(null,null,GENERIC_WRITE);

if(sc_hndl.ToInt32() !=0)
{
int DELETE = 0x10000;
IntPtr svc_hndl = OpenService(sc_hndl,svcName,DELETE);

if(svc_hndl.ToInt32() !=0)
{
int i = DeleteService(svc_hndl);
if (i != 0)
{
CloseServiceHandle(sc_hndl);
return true;
}
else
{
CloseServiceHandle(sc_hndl);
return false;
}
}
else
return false;
}
else
return false;
}

public bool Installer(string svcName)
{
bool Ativo=false;
int GENERIC_WRITE = 0x40000000;
IntPtr sc_hndl = OpenSCManager(null,null,GENERIC_WRITE);

if(sc_hndl.ToInt32() !=0)
{
int DELETE = 0x10000;
IntPtr svc_hndl = OpenService(sc_hndl,svcName,DELETE);

if(svc_hndl.ToInt32() !=0)
{
System.ServiceProcess.ServiceController myController =
new System.ServiceProcess.ServiceController(svcName);
if (myController.CanStop)
{
Ativo=true;
}
}
}
CloseServiceHandle(sc_hndl);
return Ativo;
}

public void StopService(string svcName)
{
System.ServiceProcess.ServiceController myController =
new System.ServiceProcess.ServiceController(svcName);
if (myController.CanStop)
{
myController.Stop();
myController.Refresh();
}
myController.Dispose();
}
public void Dispose()
{
System.GC.Collect();
}
}
GeneralRe: windows service Pin
Dave Kreskowiak10-Aug-05 12:09
mveDave Kreskowiak10-Aug-05 12:09 
Generalhook to capture these messages Pin
pjoseph99910-Aug-05 2:47
pjoseph99910-Aug-05 2:47 
GeneralRe: hook to capture these messages Pin
Alomgir Miah10-Aug-05 5:50
Alomgir Miah10-Aug-05 5:50 
GeneralRe: hook to capture these messages Pin
pjoseph99910-Aug-05 21:50
pjoseph99910-Aug-05 21:50 
QuestionDB the way to go? Pin
Morrgan10-Aug-05 1:28
Morrgan10-Aug-05 1:28 
AnswerRe: DB the way to go? Pin
Dario Solera10-Aug-05 1:37
Dario Solera10-Aug-05 1:37 
GeneralRe: DB the way to go? Pin
Morrgan10-Aug-05 6:07
Morrgan10-Aug-05 6:07 
AnswerRe: DB the way to go? Pin
Guffa10-Aug-05 6:51
Guffa10-Aug-05 6:51 
GeneralRe: DB the way to go? Pin
Morrgan10-Aug-05 7:40
Morrgan10-Aug-05 7:40 
GeneralForm Painting Pin
Greeky10-Aug-05 0:54
Greeky10-Aug-05 0:54 
GeneralRe: Form Painting Pin
Dario Solera10-Aug-05 1:17
Dario Solera10-Aug-05 1:17 
GeneralRe: Form Painting Pin
Greeky10-Aug-05 2:23
Greeky10-Aug-05 2:23 
Questionhow import dll of vc++ in c# Pin
laila1110-Aug-05 0:43
laila1110-Aug-05 0:43 
AnswerRe: how import dll of vc++ in c# Pin
Dario Solera10-Aug-05 1:25
Dario Solera10-Aug-05 1:25 
Generaldatabinding on a datagrid Pin
dhol10-Aug-05 0:20
dhol10-Aug-05 0:20 
GeneralDetermining if a string is a valid filename for system Pin
misterbear9-Aug-05 23:15
misterbear9-Aug-05 23:15 
GeneralRe: Determining if a string is a valid filename for system Pin
leppie10-Aug-05 0:34
leppie10-Aug-05 0:34 

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.