<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>How to rename a project</title>
        <description> Very often, you need to start a new project by just reusing an existing one... And there comes the problem: how to properly rename the existing project and its analysis to be sure that nothing is going to get mixed up...

Here is my step by step solution (this is written for webdev but will also work for a windev or windev mobile project)

1. Do a backup of the original project (Tools&amp;gt;Save the project)
2. Restore this backup in a new directory named after your NEW project (Tools&amp;gt;Restore a project)
3. Open the restored project (still using the old project name) from the NEW directory (File&amp;gt;Open a project). The editor sees that the project was moved and changes anything needed accordingly)
4. If any object is open (window, page, report, etc) close it
5. With ONLY the project open (hence the step 4 above), save the project under it&amp;#039;s new name in the SAME NEW directory (File&amp;gt;Save AS)

-- At this point, the project is renamed, but still used the old analysis name--

6. Open the analysis
7. Save the analysis under its new name (File&amp;gt;Save AS). The window that is shown is misleading in that it&amp;#039;s the general description window for the analysis. In it, you ned to change only the &amp;#039;Name&amp;#039; field in the first tab, then click the save button
8. Once the analysis is renamed, the analysis editor asks if you want to use the renamed analysis in the current project. Answering YES is a good idea... If you missed that step, you can still change the analysis used in the project description window.

-- At this point, project and analysis are OK, but you still have the global procedures to rename--

9. Close all windows, pages, etc
10. Open the collection of global procedures still wearing the old name (this will have to be done twice: once for the server collection, once for the browser collection)
11. Save the collection under it&amp;#039;s new name (File&amp;gt;Save AS)
12. Answer yes to question asking if you want to include the renamed collection in your project
13. Delete the collection still wearing the old name (Right clic&amp;gt;Delete)


You still have a few files wearing the name of the old project in the project directory,a dn you &amp;#039;ll have to delete them by hand in windows explorer..

That&amp;#039;s it
</description>
        <link>https://www.wxforum.info/read.php?27162,23174,23174#msg-23174</link>
        <lastBuildDate>Tue, 14 Jul 2026 08:54:22 +0200</lastBuildDate>
        <generator>Phorum 5.2.23</generator>
        <item>
            <guid>https://www.wxforum.info/read.php?27162,23174,714810#msg-714810</guid>
            <title>Re: How to rename a project</title>
            <link>https://www.wxforum.info/read.php?27162,23174,714810#msg-714810</link>
            <description><![CDATA[ Hi all,<br />
<br />
I would recommend adding step 2.5 to Fabrice&#039;s project copy/rename work list:<br />
<br />
After restoring the project to the new directory, before opening it:<br />
<b>2.5 rename the original project&#039;s directory temporarily to something else.</b><br />
<br />
Why? Because Windev <b>does not</b> always fix all the file references to the new directory. Some references may be left behind to refer to the original directory, and then they would be referred to by both the original and the new projects, possibly causing mix-ups and problems! The easiest way to find them is making the original directory invisible to Windev by renaming it, thus causing Windev to generates errors for those references. <br />
<br />
After the whole copy/rename process is done and tested that is does run in test mode, rename the original directory back to its correct name. <br />
<br />
I just experienced this with Windev version 21.<br />
<br />
Best regards<br />
Ola]]></description>
            <dc:creator>Ola</dc:creator>
            <category>WebDev Solutions</category>
            <pubDate>Sun, 28 Aug 2016 22:04:52 +0200</pubDate>
        </item>
        <item>
            <guid>https://www.wxforum.info/read.php?27162,23174,130067#msg-130067</guid>
            <title>Re: How to rename a project</title>
            <link>https://www.wxforum.info/read.php?27162,23174,130067#msg-130067</link>
            <description><![CDATA[ In version 17 you can just give it an other name]]></description>
            <dc:creator>Allard &amp;lt;img src=&amp;quot;images/world-s.png&amp;quot; class=&amp;quot;global&amp;quot; alt=&amp;quot;Global User&amp;quot; title=&amp;quot;Global User&amp;quot; /&amp;gt;</dc:creator>
            <category>WebDev Solutions</category>
            <pubDate>Tue, 08 May 2012 09:13:29 +0200</pubDate>
        </item>
        <item>
            <guid>https://www.wxforum.info/read.php?27162,23174,85631#msg-85631</guid>
            <title>Re: How to rename a project</title>
            <link>https://www.wxforum.info/read.php?27162,23174,85631#msg-85631</link>
            <description><![CDATA[ <br />
Hi Fabrice. This works fine, except for installing the new project in IIS. When i install it continue using the old project name for the name of the web site.<br />
<br />
How can i change this name?<br />
<br />
Thank you<br />
<br />
<br />
    Rubén]]></description>
            <dc:creator>Ruben Sanchez Peña</dc:creator>
            <category>WebDev Solutions</category>
            <pubDate>Thu, 18 Nov 2010 11:54:40 +0100</pubDate>
        </item>
        <item>
            <guid>https://www.wxforum.info/read.php?27162,23174,79664#msg-79664</guid>
            <title>Re: How to rename a project</title>
            <link>https://www.wxforum.info/read.php?27162,23174,79664#msg-79664</link>
            <description><![CDATA[ Yes, I am try it with WinDev. It really work. <br />
<br />
Thank you, Fabrice !]]></description>
            <dc:creator>ICI</dc:creator>
            <category>WebDev Solutions</category>
            <pubDate>Mon, 13 Sep 2010 11:02:40 +0200</pubDate>
        </item>
        <item>
            <guid>https://www.wxforum.info/read.php?27162,23174,23174#msg-23174</guid>
            <title>How to rename a project</title>
            <link>https://www.wxforum.info/read.php?27162,23174,23174#msg-23174</link>
            <description><![CDATA[ Very often, you need to start a new project by just reusing an existing one... And there comes the problem: how to properly rename the existing project and its analysis to be sure that nothing is going to get mixed up...<br />
<br />
Here is my step by step solution (this is written for webdev but will also work for a windev or windev mobile project)<br />
<br />
1. Do a backup of the original project (Tools&gt;Save the project)<br />
2. Restore this backup in a new directory named after your NEW project (Tools&gt;Restore a project)<br />
3. Open the restored project (still using the old project name) from the NEW directory (File&gt;Open a project). The editor sees that the project was moved and changes anything needed accordingly)<br />
4. If any object is open (window, page, report, etc) close it<br />
5. With ONLY the project open (hence the step 4 above), save the project under it&#039;s new name in the SAME NEW directory (File&gt;Save AS)<br />
<br />
-- At this point, the project is renamed, but still used the old analysis name--<br />
<br />
6. Open the analysis<br />
7. Save the analysis under its new name (File&gt;Save AS). The window that is shown is misleading in that it&#039;s the general description window for the analysis. In it, you ned to change only the &#039;Name&#039; field in the first tab, then click the save button<br />
8. Once the analysis is renamed, the analysis editor asks if you want to use the renamed analysis in the current project. Answering YES is a good idea... If you missed that step, you can still change the analysis used in the project description window.<br />
<br />
-- At this point, project and analysis are OK, but you still have the global procedures to rename--<br />
<br />
9. Close all windows, pages, etc<br />
10. Open the collection of global procedures still wearing the old name (this will have to be done twice: once for the server collection, once for the browser collection)<br />
11. Save the collection under it&#039;s new name (File&gt;Save AS)<br />
12. Answer yes to question asking if you want to include the renamed collection in your project<br />
13. Delete the collection still wearing the old name (Right clic&gt;Delete)<br />
<br />
<br />
You still have a few files wearing the name of the old project in the project directory,a dn you &#039;ll have to delete them by hand in windows explorer..<br />
<br />
That&#039;s it<br />
]]></description>
            <dc:creator>Fabrice Harari</dc:creator>
            <category>WebDev Solutions</category>
            <pubDate>Wed, 04 Mar 2009 20:14:11 +0100</pubDate>
        </item>
    </channel>
</rss>
