biswabhusan
Posts
-
Developers Code Library -
To Check a Window Service on C#.NetThank you.
-
To Check a Window Service on C#.NetDim service() As System.ServiceProcess.ServiceController Dim i As Integer service = System.ServiceProcess.ServiceController.GetServices() For i = 0 To service.Length - 1 If service(i).ServiceName = "wampapache" Then If service(i).Status = ServiceControllerStatus.Running Then ' Kill the Service service(i).Stop() Application.Exit() Else Dim startInfo As System.Diagnostics.ProcessStartInfo Dim pStart As New System.Diagnostics.Process startInfo = New System.Diagnostics.ProcessStartInfo("E:\Biswabhusan_Collection\COREPRACTICE\TestService\wamp5_1.6.1.exe") pStart.StartInfo = startInfo pStart.Start() pStart.WaitForExit() 'Your code will halt until the exe file has executed. End If End If Next solveed - Biswabhusan
-
To Check a Window Service on C#.NetHi, I want to create a start up application that will check the MYSQL SERVICE RUNNING or Not & IF it is running then it will Kill that & Exit. Else it will run an exe setup file. Any one Please suggest me how can i check WINDOW SERVICE in DotNet. & How can i kill APACHE by using command line from my programe. Thanks connect me @ panda.biswabhusan@gmail.com
-
User Control and Window formHi, I have a user control in a window form. In user control i have a button. On click over this button i want to change the window form label text. How i can do it ? I am new to c#. please help
-
listview custom controlHi, Can any one help me to build a listview control where i can add two check box in the last right column of listview.
-
link (oop c#)Hi, I am looking for some tutorial in c# object oriented programming. Can anyone share some good links. Have a good day
-
Listview control with checkboxHi, Can any one help me to build a listview control where i can add two check box in the last right column of listview. Please help me. THanks Biswabhusan
-
two checkbox in a listview columnHi, Please help me to solve this issue. I am looking for a listview with 2 checkbox in the last column.