<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Variablen und Strings speichern???]]></title><description><![CDATA[<p>Ich will mein einenes Adressbuch skripten mit Passwort, (endlich) mit VC++ 2008 express edition.<br />
Und ich wollte fragen wie ich ein Fenster gestallte in dem man einen neues Konto anlegen kann, sich einlogen kann und wenn man sein PW vergessen hat eine beim regestrieren gestellte frage beantworten muss dann öffnet sich ein Fensten mit dem PW...</p>
<p>...beim ersten mal öffnen des Progs soll manb sich nur registrieren können</p>
<p>Ich habe es schon geschaft ein Fenster zu erstellen in dem man PW und Name eingeben kann:</p>
<pre><code class="language-cpp">#pragma once

namespace julian {

	using namespace System;
	using namespace System::ComponentModel;
	using namespace System::Collections;
	using namespace System::Windows::Forms;
	using namespace System::Text;
	using namespace System::Drawing;

	/// &lt;summary&gt;
	/// 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.
	/// &lt;/summary&gt;
	public ref class Form1 : public System::Windows::Forms::Form
	{
	public:
		Form1(void)
		{
			InitializeComponent();
			//
			//TODO: Konstruktorcode hier hinzufügen.
			//
		}

	protected:
		/// &lt;summary&gt;
		/// Verwendete Ressourcen bereinigen.
		/// &lt;/summary&gt;
		~Form1()
		{
			if (components)
			{
				delete components;
			}
		}
   private: System::Windows::Forms::TextBox^  textBox1;
   protected: 
   private: System::Windows::Forms::Panel^  panel1;
   private: System::Windows::Forms::Label^  label2;
   private: System::Windows::Forms::Label^  label1;
   private: System::Windows::Forms::Button^  btn_Anmelden;
   private: System::Windows::Forms::TextBox^  tb_Kennwort;
   private: System::Windows::Forms::TextBox^  tb_Name;

	private:
		/// &lt;summary&gt;
		/// Erforderliche Designervariable.
		/// &lt;/summary&gt;
		System::ComponentModel::Container ^components;

#pragma region Windows Form Designer generated code
		/// &lt;summary&gt;
		/// Erforderliche Methode für die Designerunterstützung.
		/// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
		/// &lt;/summary&gt;
		void InitializeComponent(void)
		{
         this-&gt;textBox1 = (gcnew System::Windows::Forms::TextBox());
         this-&gt;panel1 = (gcnew System::Windows::Forms::Panel());
         this-&gt;btn_Anmelden = (gcnew System::Windows::Forms::Button());
         this-&gt;tb_Kennwort = (gcnew System::Windows::Forms::TextBox());
         this-&gt;tb_Name = (gcnew System::Windows::Forms::TextBox());
         this-&gt;label2 = (gcnew System::Windows::Forms::Label());
         this-&gt;label1 = (gcnew System::Windows::Forms::Label());
         this-&gt;panel1-&gt;SuspendLayout();
         this-&gt;SuspendLayout();
         // 
         // textBox1
         // 
         this-&gt;textBox1-&gt;Dock = System::Windows::Forms::DockStyle::Top;
         this-&gt;textBox1-&gt;Font = (gcnew System::Drawing::Font(L&quot;Microsoft Sans Serif&quot;, 10, System::Drawing::FontStyle::Regular, System::Drawing::GraphicsUnit::Point, 
            static_cast&lt;System::Byte&gt;(0)));
         this-&gt;textBox1-&gt;Location = System::Drawing::Point(5, 5);
         this-&gt;textBox1-&gt;Multiline = true;
         this-&gt;textBox1-&gt;Name = L&quot;textBox1&quot;;
         this-&gt;textBox1-&gt;ReadOnly = true;
         this-&gt;textBox1-&gt;Size = System::Drawing::Size(402, 50);
         this-&gt;textBox1-&gt;TabIndex = 0;
         this-&gt;textBox1-&gt;TabStop = false;
         this-&gt;textBox1-&gt;Text = L&quot;Um sich anzumelden, geben Sie in den Eingabefeldern bitte Ihren Namen und Ihr Ken&quot; 
            L&quot;nwort ein.&quot;;
         // 
         // panel1
         // 
         this-&gt;panel1-&gt;Controls-&gt;Add(this-&gt;btn_Anmelden);
         this-&gt;panel1-&gt;Controls-&gt;Add(this-&gt;tb_Kennwort);
         this-&gt;panel1-&gt;Controls-&gt;Add(this-&gt;tb_Name);
         this-&gt;panel1-&gt;Controls-&gt;Add(this-&gt;label2);
         this-&gt;panel1-&gt;Controls-&gt;Add(this-&gt;label1);
         this-&gt;panel1-&gt;Dock = System::Windows::Forms::DockStyle::Fill;
         this-&gt;panel1-&gt;Location = System::Drawing::Point(5, 55);
         this-&gt;panel1-&gt;Name = L&quot;panel1&quot;;
         this-&gt;panel1-&gt;Size = System::Drawing::Size(402, 180);
         this-&gt;panel1-&gt;TabIndex = 1;
         // 
         // btn_Anmelden
         // 
         this-&gt;btn_Anmelden-&gt;Location = System::Drawing::Point(152, 119);
         this-&gt;btn_Anmelden-&gt;Name = L&quot;btn_Anmelden&quot;;
         this-&gt;btn_Anmelden-&gt;Size = System::Drawing::Size(124, 23);
         this-&gt;btn_Anmelden-&gt;TabIndex = 4;
         this-&gt;btn_Anmelden-&gt;Text = L&quot;Anmelden&quot;;
         this-&gt;btn_Anmelden-&gt;UseVisualStyleBackColor = true;
         this-&gt;btn_Anmelden-&gt;Click += gcnew System::EventHandler(this, &amp;Form1::btn_Anmelden_Click);
         // 
         // tb_Kennwort
         // 
         this-&gt;tb_Kennwort-&gt;Font = (gcnew System::Drawing::Font(L&quot;Microsoft Sans Serif&quot;, 10, System::Drawing::FontStyle::Regular, System::Drawing::GraphicsUnit::Point, 
            static_cast&lt;System::Byte&gt;(0)));
         this-&gt;tb_Kennwort-&gt;Location = System::Drawing::Point(152, 71);
         this-&gt;tb_Kennwort-&gt;Name = L&quot;tb_Kennwort&quot;;
         this-&gt;tb_Kennwort-&gt;PasswordChar = '*';
         this-&gt;tb_Kennwort-&gt;Size = System::Drawing::Size(200, 23);
         this-&gt;tb_Kennwort-&gt;TabIndex = 3;
         // 
         // tb_Name
         // 
         this-&gt;tb_Name-&gt;Font = (gcnew System::Drawing::Font(L&quot;Microsoft Sans Serif&quot;, 10, System::Drawing::FontStyle::Regular, System::Drawing::GraphicsUnit::Point, 
            static_cast&lt;System::Byte&gt;(0)));
         this-&gt;tb_Name-&gt;Location = System::Drawing::Point(152, 36);
         this-&gt;tb_Name-&gt;Name = L&quot;tb_Name&quot;;
         this-&gt;tb_Name-&gt;Size = System::Drawing::Size(200, 23);
         this-&gt;tb_Name-&gt;TabIndex = 2;
         // 
         // label2
         // 
         this-&gt;label2-&gt;AutoSize = true;
         this-&gt;label2-&gt;Font = (gcnew System::Drawing::Font(L&quot;Microsoft Sans Serif&quot;, 10, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point, 
            static_cast&lt;System::Byte&gt;(0)));
         this-&gt;label2-&gt;Location = System::Drawing::Point(42, 71);
         this-&gt;label2-&gt;Name = L&quot;label2&quot;;
         this-&gt;label2-&gt;Size = System::Drawing::Size(90, 17);
         this-&gt;label2-&gt;TabIndex = 1;
         this-&gt;label2-&gt;Text = L&quot;Kennwort : &quot;;
         // 
         // label1
         // 
         this-&gt;label1-&gt;AutoSize = true;
         this-&gt;label1-&gt;Font = (gcnew System::Drawing::Font(L&quot;Microsoft Sans Serif&quot;, 10, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point, 
            static_cast&lt;System::Byte&gt;(0)));
         this-&gt;label1-&gt;Location = System::Drawing::Point(68, 36);
         this-&gt;label1-&gt;Name = L&quot;label1&quot;;
         this-&gt;label1-&gt;Size = System::Drawing::Size(64, 17);
         this-&gt;label1-&gt;TabIndex = 0;
         this-&gt;label1-&gt;Text = L&quot;Name : &quot;;
         // 
         // Form1
         // 
         this-&gt;AutoScaleDimensions = System::Drawing::SizeF(6, 13);
         this-&gt;AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font;
         this-&gt;ClientSize = System::Drawing::Size(412, 240);
         this-&gt;Controls-&gt;Add(this-&gt;panel1);
         this-&gt;Controls-&gt;Add(this-&gt;textBox1);
         this-&gt;FormBorderStyle = System::Windows::Forms::FormBorderStyle::FixedSingle;
         this-&gt;Name = L&quot;Form1&quot;;
         this-&gt;Padding = System::Windows::Forms::Padding(5);
         this-&gt;Text = L&quot;Eingabefelder&quot;;
         this-&gt;panel1-&gt;ResumeLayout(false);
         this-&gt;panel1-&gt;PerformLayout();
         this-&gt;ResumeLayout(false);
         this-&gt;PerformLayout();

      }
#pragma endregion
   private: 
      void btn_Anmelden_Click(Object^  sender, EventArgs^  e) 
      {
         if (tb_Name-&gt;Text == &quot;&quot; || tb_Kennwort-&gt;Text == &quot;&quot;)
         {
            MessageBox::Show(&quot;Falscher Benutzername oder falsches Passwort&quot;, &quot;Fehler&quot;);
	    SystemSounds::Beep-&gt;Play();
         }
         // Schwachsinn  :D  -&gt;
         else
         {
            StringBuilder ^str = gcnew StringBuilder(&quot;&quot;);
            str-&gt;Append(&quot; Sie wurden ausspioniert. \n&quot;);
            str-&gt;Append(&quot;\n  Ihr Benutzername ist &quot; + tb_Name-&gt;Text);
            str-&gt;Append(&quot;\n  Ihr Kennwort lautet  &quot; + tb_Kennwort-&gt;Text);

            MessageBox::Show(str-&gt;ToString(), &quot;Pech gehabt!&quot;);
         }
      }

};
}
</code></pre>
<p>fehlen noch &quot;Passwort vergessen?&quot; und &quot;neues Konto&quot;,<br />
wenn ma schon einmal hier sind die daten soll man nicht öffnen können ohne PW (Adressen und Passwort &quot;speicher Datei&quot;)</p>
<p>lg<br />
LehrLehrling (Julian -&gt; deshalb oben &quot;using namespace julian&quot;)</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/244900/variablen-und-strings-speichern</link><generator>RSS for Node</generator><lastBuildDate>Sat, 19 Sep 2026 01:29:12 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/244900.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 07 Jul 2009 13:31:04 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Variablen und Strings speichern??? on Tue, 07 Jul 2009 13:31:04 GMT]]></title><description><![CDATA[<p>Ich will mein einenes Adressbuch skripten mit Passwort, (endlich) mit VC++ 2008 express edition.<br />
Und ich wollte fragen wie ich ein Fenster gestallte in dem man einen neues Konto anlegen kann, sich einlogen kann und wenn man sein PW vergessen hat eine beim regestrieren gestellte frage beantworten muss dann öffnet sich ein Fensten mit dem PW...</p>
<p>...beim ersten mal öffnen des Progs soll manb sich nur registrieren können</p>
<p>Ich habe es schon geschaft ein Fenster zu erstellen in dem man PW und Name eingeben kann:</p>
<pre><code class="language-cpp">#pragma once

namespace julian {

	using namespace System;
	using namespace System::ComponentModel;
	using namespace System::Collections;
	using namespace System::Windows::Forms;
	using namespace System::Text;
	using namespace System::Drawing;

	/// &lt;summary&gt;
	/// 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.
	/// &lt;/summary&gt;
	public ref class Form1 : public System::Windows::Forms::Form
	{
	public:
		Form1(void)
		{
			InitializeComponent();
			//
			//TODO: Konstruktorcode hier hinzufügen.
			//
		}

	protected:
		/// &lt;summary&gt;
		/// Verwendete Ressourcen bereinigen.
		/// &lt;/summary&gt;
		~Form1()
		{
			if (components)
			{
				delete components;
			}
		}
   private: System::Windows::Forms::TextBox^  textBox1;
   protected: 
   private: System::Windows::Forms::Panel^  panel1;
   private: System::Windows::Forms::Label^  label2;
   private: System::Windows::Forms::Label^  label1;
   private: System::Windows::Forms::Button^  btn_Anmelden;
   private: System::Windows::Forms::TextBox^  tb_Kennwort;
   private: System::Windows::Forms::TextBox^  tb_Name;

	private:
		/// &lt;summary&gt;
		/// Erforderliche Designervariable.
		/// &lt;/summary&gt;
		System::ComponentModel::Container ^components;

#pragma region Windows Form Designer generated code
		/// &lt;summary&gt;
		/// Erforderliche Methode für die Designerunterstützung.
		/// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
		/// &lt;/summary&gt;
		void InitializeComponent(void)
		{
         this-&gt;textBox1 = (gcnew System::Windows::Forms::TextBox());
         this-&gt;panel1 = (gcnew System::Windows::Forms::Panel());
         this-&gt;btn_Anmelden = (gcnew System::Windows::Forms::Button());
         this-&gt;tb_Kennwort = (gcnew System::Windows::Forms::TextBox());
         this-&gt;tb_Name = (gcnew System::Windows::Forms::TextBox());
         this-&gt;label2 = (gcnew System::Windows::Forms::Label());
         this-&gt;label1 = (gcnew System::Windows::Forms::Label());
         this-&gt;panel1-&gt;SuspendLayout();
         this-&gt;SuspendLayout();
         // 
         // textBox1
         // 
         this-&gt;textBox1-&gt;Dock = System::Windows::Forms::DockStyle::Top;
         this-&gt;textBox1-&gt;Font = (gcnew System::Drawing::Font(L&quot;Microsoft Sans Serif&quot;, 10, System::Drawing::FontStyle::Regular, System::Drawing::GraphicsUnit::Point, 
            static_cast&lt;System::Byte&gt;(0)));
         this-&gt;textBox1-&gt;Location = System::Drawing::Point(5, 5);
         this-&gt;textBox1-&gt;Multiline = true;
         this-&gt;textBox1-&gt;Name = L&quot;textBox1&quot;;
         this-&gt;textBox1-&gt;ReadOnly = true;
         this-&gt;textBox1-&gt;Size = System::Drawing::Size(402, 50);
         this-&gt;textBox1-&gt;TabIndex = 0;
         this-&gt;textBox1-&gt;TabStop = false;
         this-&gt;textBox1-&gt;Text = L&quot;Um sich anzumelden, geben Sie in den Eingabefeldern bitte Ihren Namen und Ihr Ken&quot; 
            L&quot;nwort ein.&quot;;
         // 
         // panel1
         // 
         this-&gt;panel1-&gt;Controls-&gt;Add(this-&gt;btn_Anmelden);
         this-&gt;panel1-&gt;Controls-&gt;Add(this-&gt;tb_Kennwort);
         this-&gt;panel1-&gt;Controls-&gt;Add(this-&gt;tb_Name);
         this-&gt;panel1-&gt;Controls-&gt;Add(this-&gt;label2);
         this-&gt;panel1-&gt;Controls-&gt;Add(this-&gt;label1);
         this-&gt;panel1-&gt;Dock = System::Windows::Forms::DockStyle::Fill;
         this-&gt;panel1-&gt;Location = System::Drawing::Point(5, 55);
         this-&gt;panel1-&gt;Name = L&quot;panel1&quot;;
         this-&gt;panel1-&gt;Size = System::Drawing::Size(402, 180);
         this-&gt;panel1-&gt;TabIndex = 1;
         // 
         // btn_Anmelden
         // 
         this-&gt;btn_Anmelden-&gt;Location = System::Drawing::Point(152, 119);
         this-&gt;btn_Anmelden-&gt;Name = L&quot;btn_Anmelden&quot;;
         this-&gt;btn_Anmelden-&gt;Size = System::Drawing::Size(124, 23);
         this-&gt;btn_Anmelden-&gt;TabIndex = 4;
         this-&gt;btn_Anmelden-&gt;Text = L&quot;Anmelden&quot;;
         this-&gt;btn_Anmelden-&gt;UseVisualStyleBackColor = true;
         this-&gt;btn_Anmelden-&gt;Click += gcnew System::EventHandler(this, &amp;Form1::btn_Anmelden_Click);
         // 
         // tb_Kennwort
         // 
         this-&gt;tb_Kennwort-&gt;Font = (gcnew System::Drawing::Font(L&quot;Microsoft Sans Serif&quot;, 10, System::Drawing::FontStyle::Regular, System::Drawing::GraphicsUnit::Point, 
            static_cast&lt;System::Byte&gt;(0)));
         this-&gt;tb_Kennwort-&gt;Location = System::Drawing::Point(152, 71);
         this-&gt;tb_Kennwort-&gt;Name = L&quot;tb_Kennwort&quot;;
         this-&gt;tb_Kennwort-&gt;PasswordChar = '*';
         this-&gt;tb_Kennwort-&gt;Size = System::Drawing::Size(200, 23);
         this-&gt;tb_Kennwort-&gt;TabIndex = 3;
         // 
         // tb_Name
         // 
         this-&gt;tb_Name-&gt;Font = (gcnew System::Drawing::Font(L&quot;Microsoft Sans Serif&quot;, 10, System::Drawing::FontStyle::Regular, System::Drawing::GraphicsUnit::Point, 
            static_cast&lt;System::Byte&gt;(0)));
         this-&gt;tb_Name-&gt;Location = System::Drawing::Point(152, 36);
         this-&gt;tb_Name-&gt;Name = L&quot;tb_Name&quot;;
         this-&gt;tb_Name-&gt;Size = System::Drawing::Size(200, 23);
         this-&gt;tb_Name-&gt;TabIndex = 2;
         // 
         // label2
         // 
         this-&gt;label2-&gt;AutoSize = true;
         this-&gt;label2-&gt;Font = (gcnew System::Drawing::Font(L&quot;Microsoft Sans Serif&quot;, 10, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point, 
            static_cast&lt;System::Byte&gt;(0)));
         this-&gt;label2-&gt;Location = System::Drawing::Point(42, 71);
         this-&gt;label2-&gt;Name = L&quot;label2&quot;;
         this-&gt;label2-&gt;Size = System::Drawing::Size(90, 17);
         this-&gt;label2-&gt;TabIndex = 1;
         this-&gt;label2-&gt;Text = L&quot;Kennwort : &quot;;
         // 
         // label1
         // 
         this-&gt;label1-&gt;AutoSize = true;
         this-&gt;label1-&gt;Font = (gcnew System::Drawing::Font(L&quot;Microsoft Sans Serif&quot;, 10, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point, 
            static_cast&lt;System::Byte&gt;(0)));
         this-&gt;label1-&gt;Location = System::Drawing::Point(68, 36);
         this-&gt;label1-&gt;Name = L&quot;label1&quot;;
         this-&gt;label1-&gt;Size = System::Drawing::Size(64, 17);
         this-&gt;label1-&gt;TabIndex = 0;
         this-&gt;label1-&gt;Text = L&quot;Name : &quot;;
         // 
         // Form1
         // 
         this-&gt;AutoScaleDimensions = System::Drawing::SizeF(6, 13);
         this-&gt;AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font;
         this-&gt;ClientSize = System::Drawing::Size(412, 240);
         this-&gt;Controls-&gt;Add(this-&gt;panel1);
         this-&gt;Controls-&gt;Add(this-&gt;textBox1);
         this-&gt;FormBorderStyle = System::Windows::Forms::FormBorderStyle::FixedSingle;
         this-&gt;Name = L&quot;Form1&quot;;
         this-&gt;Padding = System::Windows::Forms::Padding(5);
         this-&gt;Text = L&quot;Eingabefelder&quot;;
         this-&gt;panel1-&gt;ResumeLayout(false);
         this-&gt;panel1-&gt;PerformLayout();
         this-&gt;ResumeLayout(false);
         this-&gt;PerformLayout();

      }
#pragma endregion
   private: 
      void btn_Anmelden_Click(Object^  sender, EventArgs^  e) 
      {
         if (tb_Name-&gt;Text == &quot;&quot; || tb_Kennwort-&gt;Text == &quot;&quot;)
         {
            MessageBox::Show(&quot;Falscher Benutzername oder falsches Passwort&quot;, &quot;Fehler&quot;);
	    SystemSounds::Beep-&gt;Play();
         }
         // Schwachsinn  :D  -&gt;
         else
         {
            StringBuilder ^str = gcnew StringBuilder(&quot;&quot;);
            str-&gt;Append(&quot; Sie wurden ausspioniert. \n&quot;);
            str-&gt;Append(&quot;\n  Ihr Benutzername ist &quot; + tb_Name-&gt;Text);
            str-&gt;Append(&quot;\n  Ihr Kennwort lautet  &quot; + tb_Kennwort-&gt;Text);

            MessageBox::Show(str-&gt;ToString(), &quot;Pech gehabt!&quot;);
         }
      }

};
}
</code></pre>
<p>fehlen noch &quot;Passwort vergessen?&quot; und &quot;neues Konto&quot;,<br />
wenn ma schon einmal hier sind die daten soll man nicht öffnen können ohne PW (Adressen und Passwort &quot;speicher Datei&quot;)</p>
<p>lg<br />
LehrLehrling (Julian -&gt; deshalb oben &quot;using namespace julian&quot;)</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1738589</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1738589</guid><dc:creator><![CDATA[LehrLehrling]]></dc:creator><pubDate>Tue, 07 Jul 2009 13:31:04 GMT</pubDate></item><item><title><![CDATA[Reply to Variablen und Strings speichern??? on Tue, 07 Jul 2009 13:32:25 GMT]]></title><description><![CDATA[<p>Falsches Forum, das ist kein C++ sondern C++/CLI -&gt; 6 Stockwerke höher.</p>
<p>Grüssli</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1738592</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1738592</guid><dc:creator><![CDATA[Dravere]]></dc:creator><pubDate>Tue, 07 Jul 2009 13:32:25 GMT</pubDate></item><item><title><![CDATA[Reply to Variablen und Strings speichern??? on Tue, 07 Jul 2009 13:34:25 GMT]]></title><description><![CDATA[<p>sry ich schreib ihn ins andere forum</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1738597</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1738597</guid><dc:creator><![CDATA[LehrLehrling]]></dc:creator><pubDate>Tue, 07 Jul 2009 13:34:25 GMT</pubDate></item><item><title><![CDATA[Reply to Variablen und Strings speichern??? on Tue, 07 Jul 2009 13:57:57 GMT]]></title><description><![CDATA[<p>Bei so langen Funktionen und dann noch jedes Mal <code>this-&gt;</code> ist mir nicht mehr ganz wohl...</p>
<p>Tipp: Ich würde bei jedem Zwischentitel wie dem folgenden eine eigene Funktion schreiben. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /></p>
<pre><code class="language-cpp">// 
         // textBox1
         //
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1738627</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1738627</guid><dc:creator><![CDATA[Nexus]]></dc:creator><pubDate>Tue, 07 Jul 2009 13:57:57 GMT</pubDate></item><item><title><![CDATA[Reply to Variablen und Strings speichern??? on Tue, 07 Jul 2009 14:34:19 GMT]]></title><description><![CDATA[<p>Nexus schrieb:</p>
<blockquote>
<p>Bei so langen Funktionen und dann noch jedes Mal <code>this-&gt;</code> ist mir nicht mehr ganz wohl...</p>
<p>Tipp: Ich würde bei jedem Zwischentitel wie dem folgenden eine eigene Funktion schreiben. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /></p>
<pre><code class="language-cpp">// 
         // textBox1
         //
</code></pre>
</blockquote>
<p>InitializeComponent-Code ist vom VS-Designer, der ist grundsätzlich beschissen. Wenn man den verändert bzw. optimimiert dann kann der Designer nicht mehr starten.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1738653</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1738653</guid><dc:creator><![CDATA[Rhombicosidodecahedron]]></dc:creator><pubDate>Tue, 07 Jul 2009 14:34:19 GMT</pubDate></item><item><title><![CDATA[Reply to Variablen und Strings speichern??? on Tue, 07 Jul 2009 14:52:04 GMT]]></title><description><![CDATA[<p><a href="http://www.c-plusplus.net/forum/viewtopic-var-t-is-244902.html" rel="nofollow">http://www.c-plusplus.net/forum/viewtopic-var-t-is-244902.html</a><br />
Hier gehts weiter...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1738664</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1738664</guid><dc:creator><![CDATA[theta]]></dc:creator><pubDate>Tue, 07 Jul 2009 14:52:04 GMT</pubDate></item><item><title><![CDATA[Reply to Variablen und Strings speichern??? on Wed, 08 Jul 2009 00:40:55 GMT]]></title><description><![CDATA[<p>Rhombicosidodecahedron schrieb:</p>
<blockquote>
<p>InitializeComponent-Code ist vom VS-Designer, der ist grundsätzlich beschissen. Wenn man den verändert bzw. optimimiert dann kann der Designer nicht mehr starten.</p>
</blockquote>
<p>Ah, sehr schön. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /><br />
Naja...</p>
<p>theta schrieb:</p>
<blockquote>
<p><a href="http://www.c-plusplus.net/forum/viewtopic-var-t-is-244902.html" rel="nofollow">http://www.c-plusplus.net/forum/viewtopic-var-t-is-244902.html</a><br />
Hier gehts weiter...</p>
</blockquote>
<p>Danke, dass du ständig den Wegweiser spielst. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f603.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--grinning_face_with_big_eyes"
      title=":D"
      alt="😃"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1738921</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1738921</guid><dc:creator><![CDATA[Nexus]]></dc:creator><pubDate>Wed, 08 Jul 2009 00:40:55 GMT</pubDate></item></channel></rss>