Click here to Skip to main content
15,908,674 members
Home / Discussions / C#
   

C#

 
GeneralRe: USB Port Communication using C# Pin
Giorgi Dalakishvili2-Mar-08 20:37
mentorGiorgi Dalakishvili2-Mar-08 20:37 
GeneralSet the text on a textbox in form load with registry values. Pin
CodingLover2-Mar-08 15:36
CodingLover2-Mar-08 15:36 
GeneralRe: Set the text on a textbox in form load with registry values. Pin
CodingLover2-Mar-08 16:57
CodingLover2-Mar-08 16:57 
AnswerRe: Set the text on a textbox in form load with registry values. Pin
dipak.dipak2-Mar-08 17:31
dipak.dipak2-Mar-08 17:31 
GeneralRe: Set the text on a textbox in form load with registry values. Pin
CodingLover2-Mar-08 17:54
CodingLover2-Mar-08 17:54 
GeneralRe: Set the text on a textbox in form load with registry values. Pin
dipak.dipak2-Mar-08 19:01
dipak.dipak2-Mar-08 19:01 
GeneralRe: Set the text on a textbox in form load with registry values. Pin
CodingLover2-Mar-08 19:58
CodingLover2-Mar-08 19:58 
GeneralRe: Set the text on a textbox in form load with registry values. Pin
DaveyM692-Mar-08 23:20
professionalDaveyM692-Mar-08 23:20 
CodingLover wrote:
the textBox1 text set to empty... This is happened automatically


You really shouldn't do this in the InitializeComponent method as it's likely to get erased. It's safe to hardcode a value in there i.e. this.textBox1.Text = "Initial Text";.

When you modify your form in the designer, let's say you add a text box, the VS rewrites the InitializeComponent adding your new text box to it and setting some basic property values. It does the same anytime you modify a property in the designer. When it does this, the whole method is rewritten and any changes you made will most likely get erased in the process.

Before the InitializeComponent method there is this to warn you:
#region Windows Form Designer generated code

/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>


You should put your code either in the constructor after the call to InitializeComponent, or better still, in a seperate method to be called afterwards.
public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();
        OtherInitializations();
    }

    private void OtherInitializations()
    {
        // Your stuff goes here
        this.textBox1.Text = regKey.GetValue("server").ToString();
    }
}


Dave

GeneralRe: Set the text on a textbox in form load with registry values. Pin
CodingLover2-Mar-08 23:34
CodingLover2-Mar-08 23:34 
GeneralRe: Set the text on a textbox in form load with registry values. Pin
DaveyM693-Mar-08 1:06
professionalDaveyM693-Mar-08 1:06 
GeneralMonitoring Internet Traffic Pin
aj.esler2-Mar-08 15:31
aj.esler2-Mar-08 15:31 
GeneralRe: Monitoring Internet Traffic Pin
Laubi2-Mar-08 20:16
Laubi2-Mar-08 20:16 
QuestionHow Pinged me??? Pin
nelsonpaixao2-Mar-08 14:57
nelsonpaixao2-Mar-08 14:57 
GeneralRe: How Pinged me??? Pin
Laubi2-Mar-08 20:18
Laubi2-Mar-08 20:18 
GeneralListboxes ... finding certain numbers Pin
Jacob Dixon2-Mar-08 14:32
Jacob Dixon2-Mar-08 14:32 
GeneralRe: Listboxes ... finding certain numbers Pin
Anthony Mushrow2-Mar-08 14:40
professionalAnthony Mushrow2-Mar-08 14:40 
GeneralRe: Listboxes ... finding certain numbers Pin
Jacob Dixon2-Mar-08 14:47
Jacob Dixon2-Mar-08 14:47 
GeneralRe: Listboxes ... finding certain numbers Pin
Luc Pattyn2-Mar-08 15:20
sitebuilderLuc Pattyn2-Mar-08 15:20 
GeneralRe: Listboxes ... finding certain numbers Pin
aj.esler2-Mar-08 14:49
aj.esler2-Mar-08 14:49 
GeneralRe: Listboxes ... finding certain numbers Pin
Jacob Dixon2-Mar-08 14:54
Jacob Dixon2-Mar-08 14:54 
AnswerRe: Listboxes ... finding certain numbers Pin
dipak.dipak2-Mar-08 19:25
dipak.dipak2-Mar-08 19:25 
QuestionHow to load Kernel32.dll and use GetSystemInfo(...) Pin
gshen2-Mar-08 12:59
gshen2-Mar-08 12:59 
AnswerRe: How to load Kernel32.dll and use GetSystemInfo(...) Pin
Anthony Mushrow2-Mar-08 14:14
professionalAnthony Mushrow2-Mar-08 14:14 
AnswerRe: How to load Kernel32.dll and use GetSystemInfo(...) Pin
Luc Pattyn2-Mar-08 15:22
sitebuilderLuc Pattyn2-Mar-08 15:22 
GeneralOpening multiple files Pin
Jacob Dixon2-Mar-08 10:16
Jacob Dixon2-Mar-08 10:16 

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.