<?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[Mit mehreren (jetzt bei mir 2) Leuten an einem Projekt arbeiten.]]></title><description><![CDATA[<p>Hallo,</p>
<p>ich arbeite jetzt schon seit ein paar wochen einem freund an einem Programm.<br />
Bisher habe ich 2 Projekte erstellt. Eins wo das Hauptprogramm lief (dort<br />
hat mein kollege drin gearbeitet) und eins wo ich nur auf eine unit des<br />
Hauptprogramms zugegriffen habe. Jetzt wo die formen miteinander<br />
gemeinsame komponenten nutzen, ist es nicht mehr möglich so zu arbeiten.</p>
<p>Wie würdet ihr das lösen?</p>
<p>Also nochmal kurz zusammengefasst.</p>
<p>Unser Programm hat mehrere Formen.<br />
Mein Kollege und ich arbeiten niemals an der gleichen form.<br />
Wir wollen aber dennnoch das selbe projekt öffnen.</p>
<p>Edit:</p>
<p>Evtl hilft es euch, wenn ich euch mal die Projekt.cpp vom hauptprogramm zeige</p>
<pre><code class="language-cpp">//---------------------------------------------------------------------------

#include &lt;vcl.h&gt;
#pragma hdrstop
//---------------------------------------------------------------------------
USEFORM(&quot;Wizzard.cpp&quot;, F_Wizzard);
USEFORM(&quot;LernModus.cpp&quot;, F_LernModus);
USEFORM(&quot;FramePT.cpp&quot;, Fr_Pt); /* TFrame: File Type */
USEFORM(&quot;FrameFa.cpp&quot;, Fr_Fa); /* TFrame: File Type */
USEFORM(&quot;ExpertenModus.cpp&quot;, F_ExpertenModus);
USEFORM(&quot;FrameFsa.cpp&quot;, Fr_Fsa); /* TFrame: File Type */
USEFORM(&quot;..\ToolBox.cpp&quot;, F_ToolBox);
USEFORM(&quot;FrameFssa.cpp&quot;, Fr_Fssa); /* TFrame: File Type */
//---------------------------------------------------------------------------
WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
{
        try
        {
                 Application-&gt;Initialize();
                 Application-&gt;CreateForm(__classid(TF_Wizzard), &amp;F_Wizzard);
                 Application-&gt;CreateForm(__classid(TF_LernModus), &amp;F_LernModus);
                 Application-&gt;CreateForm(__classid(TF_ExpertenModus), &amp;F_ExpertenModus);
                 Application-&gt;CreateForm(__classid(TF_ToolBox), &amp;F_ToolBox);
                 Application-&gt;Run();
        }
        catch (Exception &amp;exception)
        {
                 Application-&gt;ShowException(&amp;exception);
        }
        catch (...)
        {
                 try
                 {
                         throw Exception(&quot;&quot;);
                 }
                 catch (Exception &amp;exception)
                 {
                         Application-&gt;ShowException(&amp;exception);
                 }
        }
        return 0;
}
//---------------------------------------------------------------------------
</code></pre>
<p>ich für meinen teil muss jetzt nur die <a href="http://ToolBox.xxx" rel="nofollow">ToolBox.xxx</a> und die <a href="http://ExpertenMods.xxx" rel="nofollow">ExpertenMods.xxx</a> bearbeiten</p>
<p>Ich dachte mir schon, es würde genügen wenn ich ein neues projekt anlege und<br />
dann dort die originale Projekt.cpp reinkopiere und den pfad oben so abänder<br />
das es passt.</p>
<p>Danke im Voraus.</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/158933/mit-mehreren-jetzt-bei-mir-2-leuten-an-einem-projekt-arbeiten</link><generator>RSS for Node</generator><lastBuildDate>Mon, 10 Aug 2026 22:04:33 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/158933.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 10 Sep 2006 11:33:27 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Mit mehreren (jetzt bei mir 2) Leuten an einem Projekt arbeiten. on Sun, 10 Sep 2006 11:45:10 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>ich arbeite jetzt schon seit ein paar wochen einem freund an einem Programm.<br />
Bisher habe ich 2 Projekte erstellt. Eins wo das Hauptprogramm lief (dort<br />
hat mein kollege drin gearbeitet) und eins wo ich nur auf eine unit des<br />
Hauptprogramms zugegriffen habe. Jetzt wo die formen miteinander<br />
gemeinsame komponenten nutzen, ist es nicht mehr möglich so zu arbeiten.</p>
<p>Wie würdet ihr das lösen?</p>
<p>Also nochmal kurz zusammengefasst.</p>
<p>Unser Programm hat mehrere Formen.<br />
Mein Kollege und ich arbeiten niemals an der gleichen form.<br />
Wir wollen aber dennnoch das selbe projekt öffnen.</p>
<p>Edit:</p>
<p>Evtl hilft es euch, wenn ich euch mal die Projekt.cpp vom hauptprogramm zeige</p>
<pre><code class="language-cpp">//---------------------------------------------------------------------------

#include &lt;vcl.h&gt;
#pragma hdrstop
//---------------------------------------------------------------------------
USEFORM(&quot;Wizzard.cpp&quot;, F_Wizzard);
USEFORM(&quot;LernModus.cpp&quot;, F_LernModus);
USEFORM(&quot;FramePT.cpp&quot;, Fr_Pt); /* TFrame: File Type */
USEFORM(&quot;FrameFa.cpp&quot;, Fr_Fa); /* TFrame: File Type */
USEFORM(&quot;ExpertenModus.cpp&quot;, F_ExpertenModus);
USEFORM(&quot;FrameFsa.cpp&quot;, Fr_Fsa); /* TFrame: File Type */
USEFORM(&quot;..\ToolBox.cpp&quot;, F_ToolBox);
USEFORM(&quot;FrameFssa.cpp&quot;, Fr_Fssa); /* TFrame: File Type */
//---------------------------------------------------------------------------
WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
{
        try
        {
                 Application-&gt;Initialize();
                 Application-&gt;CreateForm(__classid(TF_Wizzard), &amp;F_Wizzard);
                 Application-&gt;CreateForm(__classid(TF_LernModus), &amp;F_LernModus);
                 Application-&gt;CreateForm(__classid(TF_ExpertenModus), &amp;F_ExpertenModus);
                 Application-&gt;CreateForm(__classid(TF_ToolBox), &amp;F_ToolBox);
                 Application-&gt;Run();
        }
        catch (Exception &amp;exception)
        {
                 Application-&gt;ShowException(&amp;exception);
        }
        catch (...)
        {
                 try
                 {
                         throw Exception(&quot;&quot;);
                 }
                 catch (Exception &amp;exception)
                 {
                         Application-&gt;ShowException(&amp;exception);
                 }
        }
        return 0;
}
//---------------------------------------------------------------------------
</code></pre>
<p>ich für meinen teil muss jetzt nur die <a href="http://ToolBox.xxx" rel="nofollow">ToolBox.xxx</a> und die <a href="http://ExpertenMods.xxx" rel="nofollow">ExpertenMods.xxx</a> bearbeiten</p>
<p>Ich dachte mir schon, es würde genügen wenn ich ein neues projekt anlege und<br />
dann dort die originale Projekt.cpp reinkopiere und den pfad oben so abänder<br />
das es passt.</p>
<p>Danke im Voraus.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1134588</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1134588</guid><dc:creator><![CDATA[d0x]]></dc:creator><pubDate>Sun, 10 Sep 2006 11:45:10 GMT</pubDate></item><item><title><![CDATA[Reply to Mit mehreren (jetzt bei mir 2) Leuten an einem Projekt arbeiten. on Sun, 10 Sep 2006 11:58:00 GMT]]></title><description><![CDATA[<p>Hallo</p>
<blockquote>
<p>Wir wollen aber dennnoch das selbe projekt öffnen.</p>
</blockquote>
<p>bedeutet das, das eure Projekt-Dateien auf einem Rechner liegen, auf den ihr über die Dateifreigabe gleichzeitig zugreift?<br />
Oder habt ihr doch lokal jeweils eine Kopie des Projekts?</p>
<p>Wenn letzteres, reicht es beim Abgleich jeweils die entsprechenden cpp, h,und dfm der Units auszutauschen.</p>
<p>bis bald<br />
akari</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1134600</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1134600</guid><dc:creator><![CDATA[akari]]></dc:creator><pubDate>Sun, 10 Sep 2006 11:58:00 GMT</pubDate></item><item><title><![CDATA[Reply to Mit mehreren (jetzt bei mir 2) Leuten an einem Projekt arbeiten. on Sun, 10 Sep 2006 12:09:41 GMT]]></title><description><![CDATA[<p>hätte ich eigentlich auch drauf kommen können ja <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>
<p>Haben es bisher mit Datenfreigabe und nem netzlaufwerk gelößt.</p>
<p>So kann man halt immer gucken was der andere macht.</p>
<p>Datensicherungstechnisch ists auch einfacher.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1134609</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1134609</guid><dc:creator><![CDATA[d0x]]></dc:creator><pubDate>Sun, 10 Sep 2006 12:09:41 GMT</pubDate></item></channel></rss>