Click here to Skip to main content
15,893,487 members
Home / Discussions / C#
   

C#

 
GeneralRe: Replace a letter in a Textbox? Pin
ahlm28-Nov-09 22:23
ahlm28-Nov-09 22:23 
GeneralRe: Replace a letter in a Textbox? Pin
DaveyM6929-Nov-09 1:55
professionalDaveyM6929-Nov-09 1:55 
QuestionWhen to call base.Onstart Pin
Jordanwb28-Nov-09 8:13
Jordanwb28-Nov-09 8:13 
AnswerRe: When to call base.Onstart Pin
DaveyM6928-Nov-09 8:58
professionalDaveyM6928-Nov-09 8:58 
GeneralRe: When to call base.Onstart Pin
Luc Pattyn28-Nov-09 9:23
sitebuilderLuc Pattyn28-Nov-09 9:23 
GeneralRe: When to call base.Onstart Pin
DaveyM6928-Nov-09 11:02
professionalDaveyM6928-Nov-09 11:02 
GeneralRe: When to call base.Onstart [modified] Pin
Jordanwb6-Dec-09 15:08
Jordanwb6-Dec-09 15:08 
AnswerRe: When to call base.Onstart Pin
PIEBALDconsult28-Nov-09 14:18
mvePIEBALDconsult28-Nov-09 14:18 
That depends on what else you do in your OnStart; I call base.OnStart in the middle:

        protected override void
        OnStart
        (
            string[] args
        )
        {
# if DEBUG
            System.Threading.Thread.Sleep ( 60000 ) ;
# endif        
            this.oktoproceed = true ;

            base.OnStart ( args ) ;

            if ( this.when != null )
            {            
                this.when.Start() ;
            }
            
            LogMessage ( this.ServiceName + " started" ) ;
            
            return ;
        }


(The Sleep gives me time to attach the debugger. when is a System.Timers.Timer.)
QuestionPrint by windows CE device Pin
Sajjad Izadi28-Nov-09 7:12
Sajjad Izadi28-Nov-09 7:12 
AnswerRe: Print by windows CE device Pin
Christian Graus28-Nov-09 7:42
protectorChristian Graus28-Nov-09 7:42 
GeneralRe: Print by windows CE device Pin
Sajjad Izadi28-Nov-09 7:45
Sajjad Izadi28-Nov-09 7:45 
QuestionPrinting a datagridview... Pin
JollyMansArt28-Nov-09 7:05
JollyMansArt28-Nov-09 7:05 
QuestionRe: Printing a datagridview... Please help Pin
JollyMansArt28-Nov-09 10:03
JollyMansArt28-Nov-09 10:03 
QuestionGetting Report from dataBase and showing it in Word. Pin
Said Ali Jalali28-Nov-09 6:18
Said Ali Jalali28-Nov-09 6:18 
AnswerRe: Getting Report from dataBase and showing it in Word. Pin
dan!sh 28-Nov-09 6:31
professional dan!sh 28-Nov-09 6:31 
AnswerRe: Getting Report from dataBase and showing it in Word. Pin
minnie mouse1-Dec-09 12:50
minnie mouse1-Dec-09 12:50 
QuestionWCF catching EndPointNotFoundException Pin
Ryan Minor28-Nov-09 6:00
Ryan Minor28-Nov-09 6:00 
AnswerRe: WCF catching EndPointNotFoundException Pin
Ravi Bhavnani28-Nov-09 7:51
professionalRavi Bhavnani28-Nov-09 7:51 
QuestionHow to decide whether a class is "internal" by .net reflection ? Pin
yoyota28-Nov-09 4:26
yoyota28-Nov-09 4:26 
AnswerCross Post Pin
dan!sh 28-Nov-09 5:50
professional dan!sh 28-Nov-09 5:50 
AnswerRe: How to decide whether a class is "internal" by .net reflection ? Pin
yoyota28-Nov-09 13:55
yoyota28-Nov-09 13:55 
QuestionHow to represent an image, voice & vedio trafic after we capture it from the app. layer at TCP ??? Pin
3bood.ghzawi28-Nov-09 4:20
3bood.ghzawi28-Nov-09 4:20 
AnswerRe: How to represent an image, voice & vedio trafic after we capture it from the app. layer at TCP ??? Pin
Christian Graus28-Nov-09 5:28
protectorChristian Graus28-Nov-09 5:28 
QuestionEditable data grid view? Pin
Emmet_Brown28-Nov-09 4:05
Emmet_Brown28-Nov-09 4:05 
AnswerRe: Editable data grid view? Pin
JollyMansArt28-Nov-09 8:51
JollyMansArt28-Nov-09 8:51 

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.