If Combobox->SelectedItem = "Bla" ( Textbox->Text "bsp")



  • Hallo.

    Mein Problem Code:

    // 
    			// textBox2
    			// 
    			this->textBox2->BorderStyle = System::Windows::Forms::BorderStyle::None;
    			this->textBox2->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 8.25F, static_cast<System::Drawing::FontStyle>((System::Drawing::FontStyle::Bold | System::Drawing::FontStyle::Underline)), 
    				System::Drawing::GraphicsUnit::Point, static_cast<System::Byte>(0)));
    			this->textBox2->Location = System::Drawing::Point(3, 36);
    			this->textBox2->Multiline = true;
    			this->textBox2->Name = L"textBox2";
    			this->textBox2->Size = System::Drawing::Size(100, 20);
    			this->textBox2->TabIndex = 15;
    			if(comboBox1->SelectedItem=="XXX")
    			{
    				this->textBox2->Text = L"YYY";
    			}
    

    Wo liegt der Fehler denn a.) Der Entwurf wird mir nur noch in HtmL angezeigt, b.) wird der Text nicht angezeigt, wenn if = true

    Hier mal der ganze Code:

    #pragma once
    
    namespace Kochbuch64 {
    
    	using namespace System;
    	using namespace System::ComponentModel;
    	using namespace System::Collections;
    	using namespace System::Windows::Forms;
    	using namespace System::Data;
    	using namespace System::Drawing;
    
    	/// <summary>
    	/// Zusammenfassung für Form1
    	///
    	/// Warnung: Wenn Sie den Namen dieser Klasse ändern, müssen Sie auch
    	///          die Ressourcendateiname-Eigenschaft für das Tool zur Kompilierung verwalteter Ressourcen ändern,
    	///          das allen RESX-Dateien zugewiesen ist, von denen diese Klasse abhängt.
    	///          Anderenfalls können die Designer nicht korrekt mit den lokalisierten Ressourcen
    	///          arbeiten, die diesem Formular zugewiesen sind.
    	/// </summary>
    	public ref class Form1 : public System::Windows::Forms::Form
    	{
    	public:
    		Form1(void)
    		{
    			InitializeComponent();
    			//
    			//TODO: Konstruktorcode hier hinzufügen.
    			//
    		}
    
    	protected:
    		/// <summary>
    		/// Verwendete Ressourcen bereinigen.
    		/// </summary>
    		~Form1()
    		{
    			if (components)
    			{
    				delete components;
    			}
    		}
    	private: System::Windows::Forms::ComboBox^  comboBox1;
    	protected: 
    
    	private: System::Windows::Forms::PictureBox^  pictureBox1;
    	private: System::Windows::Forms::TextBox^  textBox1;
    
    	private: System::Windows::Forms::TextBox^  textBox8;
    	private: System::Windows::Forms::TextBox^  textBox3;
    	private: System::Windows::Forms::TextBox^  textBox4;
    	private: System::Windows::Forms::TextBox^  textBox5;
    	private: System::Windows::Forms::TextBox^  textBox9;
    	private: System::Windows::Forms::TextBox^  textBox6;
    	private: System::Windows::Forms::TextBox^  textBox7;
    	private: System::Windows::Forms::TextBox^  textBox10;
    	private: System::Windows::Forms::TextBox^  textBox11;
    	private: System::Windows::Forms::TextBox^  textBox12;
    	private: System::Windows::Forms::GroupBox^  groupBox1;
    	private: System::Windows::Forms::GroupBox^  groupBox2;
    	private: System::Windows::Forms::GroupBox^  groupBox3;
    	private: System::Windows::Forms::TextBox^  textBox2;
    
    	private: System::ComponentModel::IContainer^  components;
    
    	private:
    		/// <summary>
    		/// Erforderliche Designervariable.
    		/// </summary>
    
    #pragma region Windows Form Designer generated code
    		/// <summary>
    		/// Erforderliche Methode für die Designerunterstützung.
    		/// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
    		/// </summary>
    		void InitializeComponent(void)
    		{
    			System::ComponentModel::ComponentResourceManager^  resources = (gcnew System::ComponentModel::ComponentResourceManager(Form1::typeid));
    			this->comboBox1 = (gcnew System::Windows::Forms::ComboBox());
    			this->pictureBox1 = (gcnew System::Windows::Forms::PictureBox());
    			this->textBox1 = (gcnew System::Windows::Forms::TextBox());
    			this->textBox8 = (gcnew System::Windows::Forms::TextBox());
    			this->textBox3 = (gcnew System::Windows::Forms::TextBox());
    			this->textBox4 = (gcnew System::Windows::Forms::TextBox());
    			this->textBox5 = (gcnew System::Windows::Forms::TextBox());
    			this->textBox9 = (gcnew System::Windows::Forms::TextBox());
    			this->textBox6 = (gcnew System::Windows::Forms::TextBox());
    			this->textBox7 = (gcnew System::Windows::Forms::TextBox());
    			this->textBox10 = (gcnew System::Windows::Forms::TextBox());
    			this->textBox11 = (gcnew System::Windows::Forms::TextBox());
    			this->textBox12 = (gcnew System::Windows::Forms::TextBox());
    			this->groupBox1 = (gcnew System::Windows::Forms::GroupBox());
    			this->groupBox2 = (gcnew System::Windows::Forms::GroupBox());
    			this->textBox2 = (gcnew System::Windows::Forms::TextBox());
    			this->groupBox3 = (gcnew System::Windows::Forms::GroupBox());
    			(cli::safe_cast<System::ComponentModel::ISupportInitialize^  >(this->pictureBox1))->BeginInit();
    			this->groupBox1->SuspendLayout();
    			this->groupBox2->SuspendLayout();
    			this->groupBox3->SuspendLayout();
    			this->SuspendLayout();
    			// 
    			// comboBox1
    			// 
    			this->comboBox1->FormattingEnabled = true;
    			this->comboBox1->Items->AddRange(gcnew cli::array< System::Object^  >(1) {L"Eier in Schinken Senf Soße"});
    			this->comboBox1->Location = System::Drawing::Point(12, 12);
    			this->comboBox1->Name = L"comboBox1";
    			this->comboBox1->Size = System::Drawing::Size(121, 21);
    			this->comboBox1->TabIndex = 0;
    			this->comboBox1->SelectedIndexChanged += gcnew System::EventHandler(this, &Form1::comboBox1_SelectedIndexChanged);
    			// 
    			// pictureBox1
    			// 
    			this->pictureBox1->Anchor = static_cast<System::Windows::Forms::AnchorStyles>((((System::Windows::Forms::AnchorStyles::Top | System::Windows::Forms::AnchorStyles::Bottom) 
    				| System::Windows::Forms::AnchorStyles::Left) 
    				| System::Windows::Forms::AnchorStyles::Right));
    			this->pictureBox1->BackgroundImage = (cli::safe_cast<System::Drawing::Image^  >(resources->GetObject(L"pictureBox1.BackgroundImage")));
    			this->pictureBox1->BackgroundImageLayout = System::Windows::Forms::ImageLayout::Zoom;
    			this->pictureBox1->ImageLocation = L"";
    			this->pictureBox1->Location = System::Drawing::Point(259, 17);
    			this->pictureBox1->Name = L"pictureBox1";
    			this->pictureBox1->Size = System::Drawing::Size(414, 378);
    			this->pictureBox1->TabIndex = 1;
    			this->pictureBox1->TabStop = false;
    			// 
    			// textBox1
    			// 
    			this->textBox1->BorderStyle = System::Windows::Forms::BorderStyle::None;
    			this->textBox1->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 8.25F, static_cast<System::Drawing::FontStyle>((System::Drawing::FontStyle::Bold | System::Drawing::FontStyle::Underline)), 
    				System::Drawing::GraphicsUnit::Point, static_cast<System::Byte>(0)));
    			this->textBox1->Location = System::Drawing::Point(4, 19);
    			this->textBox1->Multiline = true;
    			this->textBox1->Name = L"textBox1";
    			this->textBox1->ReadOnly = true;
    			this->textBox1->Size = System::Drawing::Size(100, 20);
    			this->textBox1->TabIndex = 2;
    			this->textBox1->Text = L"Gericht:";
    			this->textBox1->TextChanged += gcnew System::EventHandler(this, &Form1::textBox1_TextChanged);
    			// 
    			// textBox8
    			// 
    			this->textBox8->BorderStyle = System::Windows::Forms::BorderStyle::None;
    			this->textBox8->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 8.25F, static_cast<System::Drawing::FontStyle>((System::Drawing::FontStyle::Bold | System::Drawing::FontStyle::Underline)), 
    				System::Drawing::GraphicsUnit::Point, static_cast<System::Byte>(0)));
    			this->textBox8->Location = System::Drawing::Point(3, 62);
    			this->textBox8->Multiline = true;
    			this->textBox8->Name = L"textBox8";
    			this->textBox8->ReadOnly = true;
    			this->textBox8->Size = System::Drawing::Size(100, 20);
    			this->textBox8->TabIndex = 9;
    			this->textBox8->Text = L"Zutaten:";
    			// 
    			// textBox3
    			// 
    			this->textBox3->BorderStyle = System::Windows::Forms::BorderStyle::None;
    			this->textBox3->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 8.25F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point, 
    				static_cast<System::Byte>(0)));
    			this->textBox3->Location = System::Drawing::Point(3, 88);
    			this->textBox3->Multiline = true;
    			this->textBox3->Name = L"textBox3";
    			this->textBox3->ReadOnly = true;
    			this->textBox3->Size = System::Drawing::Size(86, 132);
    			this->textBox3->TabIndex = 10;
    			this->textBox3->Text = L"-4 Eier\r\n-Schinken\r\n-,,,\r\n-,,,\r\n-,,,\r\n";
    			this->textBox3->TextChanged += gcnew System::EventHandler(this, &Form1::textBox3_TextChanged);
    			// 
    			// textBox4
    			// 
    			this->textBox4->BorderStyle = System::Windows::Forms::BorderStyle::None;
    			this->textBox4->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 8.25F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point, 
    				static_cast<System::Byte>(0)));
    			this->textBox4->Location = System::Drawing::Point(6, 45);
    			this->textBox4->Multiline = true;
    			this->textBox4->Name = L"textBox4";
    			this->textBox4->ReadOnly = true;
    			this->textBox4->Size = System::Drawing::Size(57, 20);
    			this->textBox4->TabIndex = 11;
    			this->textBox4->Text = L"Aufwand:";
    			this->textBox4->TextChanged += gcnew System::EventHandler(this, &Form1::textBox4_TextChanged);
    			// 
    			// textBox5
    			// 
    			this->textBox5->BorderStyle = System::Windows::Forms::BorderStyle::None;
    			this->textBox5->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 8.25F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point, 
    				static_cast<System::Byte>(0)));
    			this->textBox5->Location = System::Drawing::Point(81, 45);
    			this->textBox5->Multiline = true;
    			this->textBox5->Name = L"textBox5";
    			this->textBox5->ReadOnly = true;
    			this->textBox5->Size = System::Drawing::Size(100, 20);
    			this->textBox5->TabIndex = 12;
    			this->textBox5->Text = L"Leicht";
    			// 
    			// textBox9
    			// 
    			this->textBox9->BorderStyle = System::Windows::Forms::BorderStyle::None;
    			this->textBox9->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 8.25F, static_cast<System::Drawing::FontStyle>((System::Drawing::FontStyle::Bold | System::Drawing::FontStyle::Underline)), 
    				System::Drawing::GraphicsUnit::Point, static_cast<System::Byte>(0)));
    			this->textBox9->Location = System::Drawing::Point(3, 200);
    			this->textBox9->Multiline = true;
    			this->textBox9->Name = L"textBox9";
    			this->textBox9->ReadOnly = true;
    			this->textBox9->Size = System::Drawing::Size(100, 20);
    			this->textBox9->TabIndex = 13;
    			this->textBox9->Text = L"Zubereitung::";
    			// 
    			// textBox6
    			// 
    			this->textBox6->BorderStyle = System::Windows::Forms::BorderStyle::None;
    			this->textBox6->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 8.25F, System::Drawing::FontStyle::Regular, System::Drawing::GraphicsUnit::Point, 
    				static_cast<System::Byte>(0)));
    			this->textBox6->Location = System::Drawing::Point(0, 226);
    			this->textBox6->Multiline = true;
    			this->textBox6->Name = L"textBox6";
    			this->textBox6->ReadOnly = true;
    			this->textBox6->Size = System::Drawing::Size(245, 178);
    			this->textBox6->TabIndex = 14;
    			this->textBox6->Text = L"Blabbalalkaja\r\nBlab\r\nbalalk\r\najaBlabbalalkaj\r\naBlabbalalkajaedsssssssssssssssssss" 
    				L"sssssssss\r\n\r\nBlabbalalkaj\r\naBlabbalalkajaBlab\r\nbalalkaja\r\n";
    			// 
    			// textBox7
    			// 
    			this->textBox7->BorderStyle = System::Windows::Forms::BorderStyle::None;
    			this->textBox7->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 8.25F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point, 
    				static_cast<System::Byte>(0)));
    			this->textBox7->Location = System::Drawing::Point(6, 19);
    			this->textBox7->Multiline = true;
    			this->textBox7->Name = L"textBox7";
    			this->textBox7->ReadOnly = true;
    			this->textBox7->Size = System::Drawing::Size(29, 20);
    			this->textBox7->TabIndex = 15;
    			this->textBox7->Text = L"Für:";
    			// 
    			// textBox10
    			// 
    			this->textBox10->BorderStyle = System::Windows::Forms::BorderStyle::None;
    			this->textBox10->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 8.25F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point, 
    				static_cast<System::Byte>(0)));
    			this->textBox10->Location = System::Drawing::Point(81, 19);
    			this->textBox10->Multiline = true;
    			this->textBox10->Name = L"textBox10";
    			this->textBox10->ReadOnly = true;
    			this->textBox10->Size = System::Drawing::Size(100, 20);
    			this->textBox10->TabIndex = 16;
    			this->textBox10->Text = L"2 Personen";
    			// 
    			// textBox11
    			// 
    			this->textBox11->BorderStyle = System::Windows::Forms::BorderStyle::None;
    			this->textBox11->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 8.25F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point, 
    				static_cast<System::Byte>(0)));
    			this->textBox11->Location = System::Drawing::Point(81, 71);
    			this->textBox11->Multiline = true;
    			this->textBox11->Name = L"textBox11";
    			this->textBox11->ReadOnly = true;
    			this->textBox11->Size = System::Drawing::Size(110, 20);
    			this->textBox11->TabIndex = 17;
    			this->textBox11->Text = L"20 Min.";
    			// 
    			// textBox12
    			// 
    			this->textBox12->BorderStyle = System::Windows::Forms::BorderStyle::None;
    			this->textBox12->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 8.25F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point, 
    				static_cast<System::Byte>(0)));
    			this->textBox12->Location = System::Drawing::Point(6, 71);
    			this->textBox12->Multiline = true;
    			this->textBox12->Name = L"textBox12";
    			this->textBox12->ReadOnly = true;
    			this->textBox12->Size = System::Drawing::Size(42, 20);
    			this->textBox12->TabIndex = 18;
    			this->textBox12->Text = L"Dauer:";
    			// 
    			// groupBox1
    			// 
    			this->groupBox1->Controls->Add(this->textBox11);
    			this->groupBox1->Controls->Add(this->textBox12);
    			this->groupBox1->Controls->Add(this->textBox4);
    			this->groupBox1->Controls->Add(this->textBox5);
    			this->groupBox1->Controls->Add(this->textBox10);
    			this->groupBox1->Controls->Add(this->textBox7);
    			this->groupBox1->Location = System::Drawing::Point(259, 401);
    			this->groupBox1->Name = L"groupBox1";
    			this->groupBox1->Size = System::Drawing::Size(155, 103);
    			this->groupBox1->TabIndex = 19;
    			this->groupBox1->TabStop = false;
    			this->groupBox1->Text = L"Infos:";
    			// 
    			// groupBox2
    			// 
    			this->groupBox2->Controls->Add(this->textBox2);
    			this->groupBox2->Controls->Add(this->textBox9);
    			this->groupBox2->Controls->Add(this->textBox3);
    			this->groupBox2->Controls->Add(this->textBox6);
    			this->groupBox2->Controls->Add(this->textBox8);
    			this->groupBox2->Controls->Add(this->textBox1);
    			this->groupBox2->Location = System::Drawing::Point(8, 44);
    			this->groupBox2->Name = L"groupBox2";
    			this->groupBox2->Size = System::Drawing::Size(245, 345);
    			this->groupBox2->TabIndex = 20;
    			this->groupBox2->TabStop = false;
    			// 
    			// textBox2
    			// 
    			this->textBox2->BorderStyle = System::Windows::Forms::BorderStyle::None;
    			this->textBox2->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 8.25F, static_cast<System::Drawing::FontStyle>((System::Drawing::FontStyle::Bold | System::Drawing::FontStyle::Underline)), 
    				System::Drawing::GraphicsUnit::Point, static_cast<System::Byte>(0)));
    			this->textBox2->Location = System::Drawing::Point(3, 36);
    			this->textBox2->Multiline = true;
    			this->textBox2->Name = L"textBox2";
    			this->textBox2->Size = System::Drawing::Size(100, 20);
    			this->textBox2->TabIndex = 15;
    			// 
    			// groupBox3
    			// 
    			this->groupBox3->Controls->Add(this->groupBox2);
    			this->groupBox3->Controls->Add(this->groupBox1);
    			this->groupBox3->Controls->Add(this->pictureBox1);
    			this->groupBox3->Location = System::Drawing::Point(12, 32);
    			this->groupBox3->Name = L"groupBox3";
    			this->groupBox3->Size = System::Drawing::Size(681, 524);
    			this->groupBox3->TabIndex = 0;
    			this->groupBox3->TabStop = false;
    			this->groupBox3->Visible = false;
    			// 
    			// Form1
    			// 
    			this->AutoScaleDimensions = System::Drawing::SizeF(6, 13);
    			this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font;
    			this->ClientSize = System::Drawing::Size(689, 540);
    			this->Controls->Add(this->groupBox3);
    			this->Controls->Add(this->comboBox1);
    			this->Name = L"Form1";
    			this->Text = L"Form1";
    			(cli::safe_cast<System::ComponentModel::ISupportInitialize^  >(this->pictureBox1))->EndInit();
    			this->groupBox1->ResumeLayout(false);
    			this->groupBox1->PerformLayout();
    			this->groupBox2->ResumeLayout(false);
    			this->groupBox2->PerformLayout();
    			this->groupBox3->ResumeLayout(false);
    			this->ResumeLayout(false);
    
    		}
    #pragma endregion
    	private: System::Void saveFileDialog1_FileOk(System::Object^  sender, System::ComponentModel::CancelEventArgs^  e) {
    			 }
    private: System::Void textBox1_TextChanged(System::Object^  sender, System::EventArgs^  e) {
    		 }
    private: System::Void textBox3_TextChanged(System::Object^  sender, System::EventArgs^  e) {
    		 }
    private: System::Void textBox4_TextChanged(System::Object^  sender, System::EventArgs^  e) {
    		 }
    private: System::Void button1_Click(System::Object^  sender, System::EventArgs^  e) {
    
    		 }
    private: System::Void comboBox1_SelectedIndexChanged(System::Object^  sender, System::EventArgs^  e) {
    			 if(comboBox1->SelectedItem=="Eier in Schinken Senf Soße")
    			 {
    				 this->groupBox3->Visible = true;
    
    			 }
    		 }
    };
    }
    


  • Das findest Du bestimmt selbst raus.
    Benutz doch den Debugger.



  • Und wie? Angeblich ist ja kein Fehler da... Läuft ja alles außer ein "Internal" Error beim Entwurf... Aber der TExt wird nicht ausgegeben!



  • Der Debugger benutzt man zur Laufzeit (=wenn das Programm läuft).
    Der Compiler / Linker sagt dir was falsch ist zur Compile / Link Time.

    Also, benutz den Debugger.



  • Edit:
    Ich bin wohl auf den selben Fehler heringefallen wie alle anderen - Das Programm stützt nicht ab der Designer meckert rum - zu recht:

    http://www.c-plusplus.net/forum/viewtopic-var-t-is-263084.html

    Wenn du in InitializeComponent herumfummelst, kann kann der scheiss Designer das nicht mehr lesen und dan meckert der Designer. Verscheibe also deinen Code irgendwo anders hin und lass InitializeComponent in Frieden.





  • Ja aber den text zeigt er mir imme rnoch nicht an... Aber wenigstens geht der Entwurf wieder...



  • private: System::Void comboBox1_SelectedIndexChanged(System::Object^  sender, System::EventArgs^  e) {
    			 if(comboBox1->SelectedItem=="Eier in Schinken Senf Soße")
    			 {
    				 this->groupBox3->Visible = true;
    
    			 }
    			 if(comboBox1->SelectedItem=="Eier in Schinken Senf Soße" ) 
                { 
                    this->textBox2->Text = "4 oder 6";
    				this->textBox2->Refresh();
                }
    		 }
    

    Habs. (Closed)





  • Danke aber guck mal auf den Post von 3 Sek davor :p

    Trotzdem Danke an alle...



  • Jochen Kalmbach schrieb:

    Beachte auch:
    http://blog.kalmbach-software.de/de/2010/03/05/ccli-und-winforms-macht-keinen-sinn/

    Das nervt, hab ich Dir schon mal gesagt.

    Lächerlich....



  • Für einen Anfänger macht es ja noch weniger Sinn...

    Aber ich gebe es zu: Das nervt...



  • Jochen Kalmbach schrieb:

    Für einen Anfänger macht es ja noch weniger Sinn...

    Aber ich gebe es zu: Das nervt...

    Wobei ich den Link auch schon früher hier gepostet habe.

    http://www.c-plusplus.net/forum/viewtopic-var-p-is-1968204.html#1968204 🕶



  • Noch schnell mal eine Frage hinterher:

    private: System::Void button1_Click_1(System::Object^  sender, System::EventArgs^  e) {
    			 OpenFileDialog ^ openFileDialog1 = gcnew OpenFileDialog(); 
                    openFileDialog1->InitialDirectory = "C:\\"; 
                    openFileDialog1->Filter = ""; 
                    openFileDialog1->Title = "Bild auswählen"; 
    
                    if (openFileDialog1->ShowDialog() == System::Windows::Forms::DialogResult::OK){ 
    					this->foto->Image = Image::FromStream (*openFileDialog1);
                    }
    		 }
    

    Ich möchte das Bild was ich auswähle in der PictureBox = foto anzeigen lassen. Doch es funktioniert nur wenn ich statt this->foto this->textBox1 nehme (oder andere textboxen). Wo ist mein Fehler?

    Danke 🙂

    (Edit: Ja, ich will nur das Programm noch in C++ schreiben und steige dann auf C# um... Total dämlich, habe Viszal Studio 2008 Professional Edition (oder so) und kann kein MFC machen... Wenn ich ein MFC Projekt erstellen will geb ich Namen ein und klick Enter und es erscheint nur ein neues kleines Fenster mit einem riesig langen HTML Code oder XHTML welchen ich nicht mal kopieren kann... Also scheint irgend ein Fehler zu sein -.- Dafür gibt man Geld aus -.-)




Anmelden zum Antworten