fox40phil
Rear Admiral
- Registriert
- Okt. 2008
- Beiträge
- 5.931
Mahlzeit!
Ich möchte gerne ein Windowsprogramm programmieren und habe gerade folgendes Problem:
In einer ComboBox gibt es 3 verschiedene Elemente/Eigenschaften die man auswählen kann. Nach dem man sich für eins entschieden hat soll sofort in dem Textfeld dadrunter ein bestimmter Text angezeigt werden, der von Element zu Element unterschiedlich ist.
Wie realisiere ich das?
Übrigends ist die TextBox nur readOnly.
Ich bin ganz neu in der W32 Programmierung, hab vorher nur C++ Konsolenanwendungen geschrieben.
Gruß Phil
Die Eigenschaften oder so^^...:
Ich möchte gerne ein Windowsprogramm programmieren und habe gerade folgendes Problem:
In einer ComboBox gibt es 3 verschiedene Elemente/Eigenschaften die man auswählen kann. Nach dem man sich für eins entschieden hat soll sofort in dem Textfeld dadrunter ein bestimmter Text angezeigt werden, der von Element zu Element unterschiedlich ist.
Wie realisiere ich das?
Übrigends ist die TextBox nur readOnly.
Ich bin ganz neu in der W32 Programmierung, hab vorher nur C++ Konsolenanwendungen geschrieben.
Gruß Phil
Die Eigenschaften oder so^^...:
Code:
[SIZE=4][COLOR=#008000][SIZE=4][COLOR=#008000]// textBox1
[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=4][/SIZE][SIZE=4][COLOR=#008000][SIZE=4][COLOR=#008000]//
[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=4][/SIZE][SIZE=4][COLOR=#0000ff][SIZE=4][COLOR=#0000ff]this[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=4]->textBox1->Cursor = System::Windows::Forms::Cursors::Arrow;
[/SIZE][SIZE=4][COLOR=#0000ff][SIZE=4][COLOR=#0000ff]this[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=4]->textBox1->Location = System::Drawing::Point(171, 67);
[/SIZE][SIZE=4][COLOR=#0000ff][SIZE=4][COLOR=#0000ff]this[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=4]->textBox1->Name = L[/SIZE][SIZE=4][COLOR=#a31515][SIZE=4][COLOR=#a31515]"textBox1"[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=4];
[/SIZE][SIZE=4][COLOR=#0000ff][SIZE=4][COLOR=#0000ff]this[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=4]->textBox1->ReadOnly = [/SIZE][SIZE=4][COLOR=#0000ff][SIZE=4][COLOR=#0000ff]true[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=4];
[/SIZE][SIZE=4][COLOR=#0000ff][SIZE=4][COLOR=#0000ff]this[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=4]->textBox1->Size = System::Drawing::Size(52, 20);
[/SIZE][SIZE=4][COLOR=#0000ff][SIZE=4][COLOR=#0000ff]this[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=4]->textBox1->TabIndex = 19;
[/SIZE][SIZE=4][COLOR=#0000ff][SIZE=4][COLOR=#0000ff]this[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=4]->textBox1->TextChanged += [/SIZE][SIZE=4][COLOR=#0000ff][SIZE=4][COLOR=#0000ff]gcnew[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=4] System::EventHandler([/SIZE][SIZE=4][COLOR=#0000ff][SIZE=4][COLOR=#0000ff]this[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=4], &Form1::textBox1_TextChanged);
[/SIZE]
[SIZE=4][COLOR=#008000]//---------------------[/COLOR][/SIZE]
[SIZE=4][COLOR=#008000][SIZE=4][COLOR=#008000]
// comboBox1
[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=4][/SIZE][SIZE=4][COLOR=#008000][SIZE=4][COLOR=#008000]//
[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=4][/SIZE][SIZE=4][COLOR=#0000ff][SIZE=4][COLOR=#0000ff]this[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=4]->comboBox1->DropDownStyle = System::Windows::Forms::ComboBoxStyle::DropDownList;
[/SIZE][SIZE=4][COLOR=#0000ff][SIZE=4][COLOR=#0000ff]this[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=4]->comboBox1->FormattingEnabled = [/SIZE][SIZE=4][COLOR=#0000ff][SIZE=4][COLOR=#0000ff]true[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=4];
[/SIZE][SIZE=4][COLOR=#0000ff][SIZE=4][COLOR=#0000ff]this[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=4]->comboBox1->Items->AddRange([/SIZE][SIZE=4][COLOR=#0000ff][SIZE=4][COLOR=#0000ff]gcnew[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=4] cli::[/SIZE][SIZE=4][COLOR=#0000ff][SIZE=4][COLOR=#0000ff]array[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=4]< System::Object^ >(3) {L[/SIZE][SIZE=4][COLOR=#a31515][SIZE=4][COLOR=#a31515]"SC 250U"[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=4], L[/SIZE][SIZE=4][COLOR=#a31515][SIZE=4][COLOR=#a31515]"SC 500U"[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=4], L[/SIZE][SIZE=4][COLOR=#a31515][SIZE=4][COLOR=#a31515]"SC 500HE-US"[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=4]});
[/SIZE][SIZE=4][COLOR=#0000ff][SIZE=4][COLOR=#0000ff]this[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=4]->comboBox1->Location = System::Drawing::Point(171, 32);
[/SIZE][SIZE=4][COLOR=#0000ff][SIZE=4][COLOR=#0000ff]this[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=4]->comboBox1->Name = L[/SIZE][SIZE=4][COLOR=#a31515][SIZE=4][COLOR=#a31515]"comboBox1"[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=4];
[/SIZE][SIZE=4][COLOR=#0000ff][SIZE=4][COLOR=#0000ff]this[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=4]->comboBox1->Size = System::Drawing::Size(100, 21);
[/SIZE][SIZE=4][COLOR=#0000ff][SIZE=4][COLOR=#0000ff]this[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=4]->comboBox1->TabIndex = 16;
[/SIZE][SIZE=4][COLOR=#008000][SIZE=4][COLOR=#008000]// [/COLOR][/SIZE][/COLOR][/SIZE]
Zuletzt bearbeitet: