Click here to Skip to main content
15,899,935 members
Home / Discussions / C#
   

C#

 
QuestionRefresh comboxbox in form1 after form2 is closed Pin
misCafe11-Jan-10 17:36
misCafe11-Jan-10 17:36 
AnswerRe: Refresh comboxbox in form1 after form2 is closed Pin
Kubajzz11-Jan-10 18:05
Kubajzz11-Jan-10 18:05 
GeneralRe: Refresh comboxbox in form1 after form2 is closed Pin
misCafe11-Jan-10 19:06
misCafe11-Jan-10 19:06 
GeneralRe: Refresh comboxbox in form1 after form2 is closed Pin
Kubajzz11-Jan-10 19:13
Kubajzz11-Jan-10 19:13 
GeneralRe: Refresh comboxbox in form1 after form2 is closed Pin
misCafe11-Jan-10 19:41
misCafe11-Jan-10 19:41 
GeneralRe: Refresh comboxbox in form1 after form2 is closed Pin
<<Tash18>>11-Jan-10 21:24
<<Tash18>>11-Jan-10 21:24 
GeneralRe: Refresh comboxbox in form1 after form2 is closed Pin
Rajeshwari Laxmanan30-Mar-10 21:34
Rajeshwari Laxmanan30-Mar-10 21:34 
QuestionFormBorderStyle problem Pin
roshihans11-Jan-10 17:21
roshihans11-Jan-10 17:21 
QuestionIcon Transparency When Working With PictureBox Control... Pin
Thomas Kemper11-Jan-10 13:20
Thomas Kemper11-Jan-10 13:20 
AnswerRe: Icon Transparency When Working With PictureBox Control... Pin
Tsuda Kageyu19-May-10 0:15
Tsuda Kageyu19-May-10 0:15 
QuestionByte Array Pin
o m n i11-Jan-10 12:36
o m n i11-Jan-10 12:36 
AnswerRe: Byte Array Pin
Luc Pattyn11-Jan-10 12:45
sitebuilderLuc Pattyn11-Jan-10 12:45 
AnswerRe: Byte Array Pin
DaveyM6911-Jan-10 14:01
professionalDaveyM6911-Jan-10 14:01 
AnswerRe: Byte Array Pin
Rick Shaub11-Jan-10 15:18
Rick Shaub11-Jan-10 15:18 
AnswerRe: Byte Array Pin
AspDotNetDev11-Jan-10 18:14
protectorAspDotNetDev11-Jan-10 18:14 
AnswerRe: Byte Array Pin
April Fans12-Jan-10 19:19
April Fans12-Jan-10 19:19 
QuestionC# Code To Start A Skype Call Pin
Kevin Marois11-Jan-10 12:28
professionalKevin Marois11-Jan-10 12:28 
AnswerRe: C# Code To Start A Skype Call Pin
Giorgi Dalakishvili11-Jan-10 19:17
mentorGiorgi Dalakishvili11-Jan-10 19:17 
QuestionHow this below code works Pin
indian14311-Jan-10 12:23
indian14311-Jan-10 12:23 
AnswerRe: How this below code works Pin
Richard MacCutchan11-Jan-10 12:52
mveRichard MacCutchan11-Jan-10 12:52 
GeneralRe: How this below code works Pin
indian14311-Jan-10 13:40
indian14311-Jan-10 13:40 
GeneralRe: How this below code works Pin
DaveyM6911-Jan-10 14:11
professionalDaveyM6911-Jan-10 14:11 
I;m not sure where you got that code from but it's called Contructor Chaining.

When overloading constructors, code can be greatly simplified by one constructor calling another that has the code in it for all or many constructors.

To this end, it is more normal for the constructor(s) with more parameters to contain the code and to be called by the 'lesser' constructor(s)... i.e.
public class Class
{
    private string name;

    public Class(string name)
    {
        this.name = name;
    }
    public Class()
        : this(string.Empty)
    { }

    public string Name
    {
        get { return name; }
    }
}


Dave

BTW, in software, hope and pray is not a viable strategy. (Luc Pattyn)
Why are you using VB6? Do you hate yourself? (Christian Graus)

GeneralRe: How this below code works Pin
indian14311-Jan-10 14:27
indian14311-Jan-10 14:27 
QuestionBoolean value changes without being modified, don't know why. Pin
aespielberg11-Jan-10 10:14
aespielberg11-Jan-10 10:14 
AnswerRe: Boolean value changes without being modified, don't know why. Pin
Luc Pattyn11-Jan-10 10:56
sitebuilderLuc Pattyn11-Jan-10 10:56 

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.