Click here to Skip to main content
15,905,028 members
Home / Discussions / C#
   

C#

 
AnswerRe: Code optimization Pin
Alan Balkany19-Oct-09 5:12
Alan Balkany19-Oct-09 5:12 
GeneralRe: Code optimization Pin
tvbarnard19-Oct-09 5:31
tvbarnard19-Oct-09 5:31 
QuestionWinpcap Wpcap.dll packet.all Pin
Archy_Yu18-Oct-09 1:36
Archy_Yu18-Oct-09 1:36 
AnswerRe: Winpcap Wpcap.dll packet.all Pin
DaveyM6918-Oct-09 1:59
professionalDaveyM6918-Oct-09 1:59 
GeneralRe: Winpcap Wpcap.dll packet.all Pin
brickner26-Feb-10 6:20
brickner26-Feb-10 6:20 
QuestionEstablish several VPN connections with C# ? Pin
Mohammad Dayyan18-Oct-09 1:22
Mohammad Dayyan18-Oct-09 1:22 
QuestionGo to next page by scrolling in CrystalReport Pin
C#_Programmer18-Oct-09 1:21
C#_Programmer18-Oct-09 1:21 
QuestionProblem with windows service!! Pin
Nafiseh Salmani18-Oct-09 1:06
Nafiseh Salmani18-Oct-09 1:06 
I run D:\Program Files\Microsoft Visual Studio 9.0\VC>Installutill.exe C:\Winservice\Release\LOG.exe to install windows service ,but The following problem occurred:


The Rollback phase completed successfully .

The transacted install has completed.
The installation failed, and the rollback has been performed.

------------
the installer class is as below:

public partial class Installer1 : Installer
    {
        //ICCIMLOGService
        ServiceInstaller ITServersLOG;
        ServiceProcessInstaller ICCIMProcessInstaller1;


        public Installer1()
        {
          
                        InitializeComponent();
                        ITServersLOG = new ServiceInstaller();
                        ICCIMProcessInstaller1 = new ServiceProcessInstaller();
                        //process.Account  = ServiceAccount.LocalSystem;
                        ICCIMProcessInstaller1.Account = ServiceAccount.LocalService ;
                        // Service will have Start Type of Manual
                        ITServersLOG.StartType = ServiceStartMode.Manual;
                        ITServersLOG.DisplayName = "ICCIMLOGService";
                        ITServersLOG.ServiceName = ITServersLOG.DisplayName;
                        Installers.Add(ITServersLOG);
                        Installers.Add(ICCIMProcessInstaller1);
               
        }
    }


how can i solve it?!! please help me!! D'Oh! | :doh:
Questionhow to searche in datagrid Pin
hadidehghani17-Oct-09 23:33
hadidehghani17-Oct-09 23:33 
AnswerRe: how to searche in datagrid Pin
dan!sh 17-Oct-09 23:47
professional dan!sh 17-Oct-09 23:47 
Questionhow to handle business layer validation error in presentation layer ? Pin
hdv21217-Oct-09 23:31
hdv21217-Oct-09 23:31 
AnswerRe: how to handle business layer validation error in presentation layer ? Pin
dan!sh 17-Oct-09 23:54
professional dan!sh 17-Oct-09 23:54 
Questiondate format Pin
Thaer Hamael17-Oct-09 22:20
Thaer Hamael17-Oct-09 22:20 
AnswerRe: date format Pin
DaveyM6917-Oct-09 22:34
professionalDaveyM6917-Oct-09 22:34 
AnswerRe: date format Pin
Eddy Vluggen18-Oct-09 0:37
professionalEddy Vluggen18-Oct-09 0:37 
QuestionLock Access DB from C# Pin
JollyMansArt17-Oct-09 18:43
JollyMansArt17-Oct-09 18:43 
AnswerRe: Lock Access DB from C# Pin
JollyMansArt18-Oct-09 7:37
JollyMansArt18-Oct-09 7:37 
QuestionImporting excel to datagrid .... Pin
nassimnastaran17-Oct-09 18:28
nassimnastaran17-Oct-09 18:28 
AnswerRe: Importing excel to datagrid .... Pin
dan!sh 17-Oct-09 21:28
professional dan!sh 17-Oct-09 21:28 
GeneralRe: Importing excel to datagrid .... Pin
nassimnastaran17-Oct-09 22:35
nassimnastaran17-Oct-09 22:35 
GeneralRe: Importing excel to datagrid .... [modified] Pin
dan!sh 17-Oct-09 23:06
professional dan!sh 17-Oct-09 23:06 
GeneralRe: Importing excel to datagrid .... [modified] Pin
nassimnastaran18-Oct-09 5:13
nassimnastaran18-Oct-09 5:13 
QuestionGenerics and the == operator. Pin
CaptainSeeSharp17-Oct-09 18:02
CaptainSeeSharp17-Oct-09 18:02 
AnswerRe: Generics and the == operator. Pin
N a v a n e e t h17-Oct-09 19:09
N a v a n e e t h17-Oct-09 19:09 
AnswerRe: Generics and the == operator. Pin
DaveyM6917-Oct-09 21:45
professionalDaveyM6917-Oct-09 21:45 

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.