2
2989coder
Hi,
I have Windows 2000 SP4, Visual Studio 2003 (Microsoft Development
Environment 2003 / Version 7.1.3088), with Microsoft >NET Framework 1.1
(Version 1.1.4322 SP1).
Using C#, C++, or VB I create an application with
one form containing only a listbox, a textbox and a button.
The only code I type is for the button: when clicked
the code copies the text from the textbox to the listbox:
in C#:
private void button1_Click(object sender, System.EventArgs e) {
listBox1.Items.Add(textBox1.Text);
}
It appears the text is copied (I can select it), but
no text appear in the listbox.
When run the compiled program on a colleague's Windows XP
computer the result was the same!
Is this a framework issue (I hardly believe that!)?
Something on our computer's setup?
Any suggestion appreciated.
Many thanks
I have Windows 2000 SP4, Visual Studio 2003 (Microsoft Development
Environment 2003 / Version 7.1.3088), with Microsoft >NET Framework 1.1
(Version 1.1.4322 SP1).
Using C#, C++, or VB I create an application with
one form containing only a listbox, a textbox and a button.
The only code I type is for the button: when clicked
the code copies the text from the textbox to the listbox:
in C#:
private void button1_Click(object sender, System.EventArgs e) {
listBox1.Items.Add(textBox1.Text);
}
It appears the text is copied (I can select it), but
no text appear in the listbox.
When run the compiled program on a colleague's Windows XP
computer the result was the same!
Is this a framework issue (I hardly believe that!)?
Something on our computer's setup?
Any suggestion appreciated.
Many thanks