<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>notepad-pp.com</title>
	<atom:link href="http://notepad-pp.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://notepad-pp.com</link>
	<description></description>
	<lastBuildDate>Fri, 03 Jun 2011 20:17:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Regular Expressions in Notepad++</title>
		<link>http://notepad-pp.com/regular-expressions-in-notepad/</link>
		<comments>http://notepad-pp.com/regular-expressions-in-notepad/#comments</comments>
		<pubDate>Wed, 27 Apr 2011 02:43:40 +0000</pubDate>
		<dc:creator>siteadmin</dc:creator>
				<category><![CDATA[Notepad ++ Features]]></category>

		<guid isPermaLink="false">http://notepad-pp.com/regular-expressions-in-notepad/</guid>
		<description><![CDATA[Although you don&#8217;t have to be a programmer to create regular expressions in Notepad++, it certainly wouldn&#8217;t hurt. Often when using Notepad++, users must utilize the search and replace feature. The term regular expressions, refers to some of the more complex aspects regarding the need to search and replace in a text editor. If this [...]]]></description>
			<content:encoded><![CDATA[<p>Although you don&#8217;t have to be a programmer to create regular expressions in Notepad++, it certainly wouldn&#8217;t hurt. Often when using <strong>Notepad++</strong>, users must utilize the search and replace feature. The term regular expressions, refers to some of the more complex aspects regarding the need to search and replace in a text editor.</p>
<p>If this seems unimportant, some hypothetical situations in which you may find yourself needing to initiate more complex search and replace features are:</p>
<ul>
<li> When trying to locate a small piece of information within a huge file</li>
</ul>
<ul>
<li>When you need to separate online into multiple lines</li>
</ul>
<ul>
<li> When you have a large FASTA file that you want to mine data from</li>
</ul>
<ul>
<li> You want to combine multiple lines into a single one</li>
</ul>
<p>Although you can very easily do a regular search, copy and paste, or simply use the enter key to place commands on separate lines, creating a few characters in Notepad++&#8217;s find and replace box may make your text editing sessions go smoothly and take less time. Since some programs do not allow users to use multi-line sequences, this may in fact be the only option for some code developers.</p>
<p>Note that any lines that contain the sequence name in information following the <em>&gt;</em>, or greater sign, are called deflines, short for definition lines.</p>
<p>Since many deflines are incredibly long, it is time for your first regular expression.</p>
<h3>Creating Your First Expression</h3>
<p>To create a regular expression in Notepad++, begin by executing the program.</p>
<ul>
<li> Create a new session or tab.</li>
</ul>
<ul>
<li> Gather the data you plan to work with, by going to its original location, and copy pasting it into your new Notepad++ session.</li>
</ul>
<ul>
<li> Save your session.</li>
</ul>
<ul>
<li> Hit Ctrl+H to bring up the find and replace feature.</li>
</ul>
<p>In order to define the defline you want to look at the beginning of the line. For our example, &gt;identifier morecodehere. Whenever the &gt; is present it will represent the front of the line city create a regular expression you used the symbol ^ whose meaning is &#8220;beginning of line.&#8221;</p>
<p>We also want to include all the characters after the &gt; symbol. Adding the* symbol will match the previous characters as many times as it can. This will make our completed regular expression <strong><em>^&gt;[^s*</em></strong> which indicates the command to start at the beginning of the line and begin matching if the first character is the&gt; symbol, and to keep mashing until you hit a void or space.</p>
<p>To test your regular expression paste it into the <em>Find What </em>box in <strong>Notepad++&#8217;s search feature </strong>and click find. You should now have created your first regular expression in Notepad++ and should have at least a beginners knowledge on how to begin making Notepad++ work for you, instead of the other way around.</p>
]]></content:encoded>
			<wfw:commentRss>http://notepad-pp.com/regular-expressions-in-notepad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Six Helpful Tips for Coders in Notepad++</title>
		<link>http://notepad-pp.com/six-helpful-tips-for-coders-in-notepad/</link>
		<comments>http://notepad-pp.com/six-helpful-tips-for-coders-in-notepad/#comments</comments>
		<pubDate>Wed, 20 Apr 2011 02:31:18 +0000</pubDate>
		<dc:creator>siteadmin</dc:creator>
				<category><![CDATA[Notepad ++ How-To]]></category>

		<guid isPermaLink="false">http://notepad-pp.com/six-helpful-tips-for-coders-in-notepad/</guid>
		<description><![CDATA[Whether you are an expert coder, or a new user enjoying the flexibility and compatibility of Notepad++, it never hurts to learn a new helpful tip or to gain a new insight on an old program. Bookmarks Using bookmarks to navigate larger documents can cut the time spent navigating around Notepad++ in half. To avoid [...]]]></description>
			<content:encoded><![CDATA[<p>Whether you are an expert coder, or a new user enjoying the flexibility and compatibility of <strong>Notepad++</strong>, it never hurts to learn a new helpful tip or to gain a new insight on an old program.</p>
<h3>Bookmarks</h3>
<p>Using bookmarks to navigate larger documents can cut the time spent navigating around Notepad++ in half. To avoid spending much time scrolling between different parts of a file, click between the line number and the line to add a bookmark. You can then easily switch to one bookmark to the next by clicking the F2 key to move down, and the Shift+F2 to navigate up.</p>
<h3>Auto-Completion</h3>
<p>Just like this feature is incredibly helpful as you navigate around the internet, it is also helpful on Notepad++ as well. While on the Backup screen set the option to auto-complete your functions. This way those complex codes do not have to be repeated each time you need them.</p>
<h3>Quick Breaks</h3>
<p>To make adding line breaks even faster, create an auto hotkey script with the following code.</p>
<ol>
<li>RControl &amp; Enter</li>
<li>Send, &lt;br/&gt;</li>
<li>Return</li>
</ol>
<p>Once this script has been run initially you will then be able to just click on Ctrl + Enter to create a break script.</p>
<h3>Box Selection</h3>
<p>To select the contents of a block or a rectangular section, hold down the alt key while making your selection.</p>
<h3>Post HTML Source Code into Your Blog</h3>
<p>Many bloggers will need to post their html source code to gain all the elements they desire in their blog posts. To convert your Notepad++ into HTML simple input, <strong><em>TextFX &gt; TextFX Convert &gt; Encode HTML .</em></strong></p>
<h3>Auto-Close HTML or XML Tags</h3>
<p>This built-in feature comes in handy when working with XML or HTML files. Head to Plugin, then TextFX, onto Autoclose XML/HTML tags and you are done. This will close each HTML tag as you input them.</p>
<p>These helpful tips should help save any coder a bit of time and energy when spending long hours coding. Eventually, most who regularly <strong>use Notepad++</strong> will come up with their own hot tips and tricks.</p>
]]></content:encoded>
			<wfw:commentRss>http://notepad-pp.com/six-helpful-tips-for-coders-in-notepad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get Productive with Notepad++</title>
		<link>http://notepad-pp.com/get-productive-with-notepad/</link>
		<comments>http://notepad-pp.com/get-productive-with-notepad/#comments</comments>
		<pubDate>Wed, 13 Apr 2011 02:23:23 +0000</pubDate>
		<dc:creator>siteadmin</dc:creator>
				<category><![CDATA[Notepad ++ Software]]></category>

		<guid isPermaLink="false">http://notepad-pp.com/get-productive-with-notepad/</guid>
		<description><![CDATA[Those who work on computers may find themselves fairly often, needing something to get them moving. Staring at a screen for hours on end, the endless button mashing, and limitless clicking can dim even the most brilliant minds rather quickly. Don&#8217;t get them started on sore wrist, tingling fingers or anything that sounds like carpal [...]]]></description>
			<content:encoded><![CDATA[<p>Those who work on computers may find themselves fairly often, needing something to get them moving. Staring at a screen for hours on end, the endless button mashing, and limitless clicking can dim even the most brilliant minds rather quickly. Don&#8217;t get them started on sore wrist, tingling fingers or anything that sounds like carpal either.</p>
<p>It has been studied how these very things can cause productivity to take a swift nose-dive, particularly at specific times a day. An hour before lunch and an hour afterwards are commonly the slowest points of productivity for most companies.</p>
<p>For computer workers, one sure way to help eliminate the drag in the daily grind, as well as reduce the chances of carpel tunnel anything occurring, is to set up short-cuts for the most highly used programs on your drive. We can do this rather quickly with <strong>Notepad++</strong>.</p>
<h3>Creating a Keyboard Shortcut for Notepad++</h3>
<ol>
<li>Head to <em>Start, All Programs</em> and find Notepad++ in your list. Right-click on the Notepad++ icon and select the <em>Desktop (create shortcut)</em> option. Once selected this will automatically send a shortcut for Notepad++ to your desktop  and its corresponding folder.</li>
<li> Create a folder called Shortcuts in the C: drive and place your <strong>Notepad++ shortcut </strong>in this folder. This is to give them a nice place to be tucked away, but easy to access when needed.</li>
<li> Add the C:shortcuts to the PATH. On Windows versions, select the <em>Start</em> button, head to <em>Control Panel</em> and click the <em>System</em> icon. Select the <em>Advanced </em>tab, then <em>Environment Variables</em>, and click on <em>PATH</em>. Click on Edit, and now add the text <em>;C:shortcuts</em> to the end of the set variable value.</li>
</ol>
<p>To initiate this shortcut, hold down the <em>Windows </em>key and press the <strong><em>R</em></strong> key. This initiates the run dialogue prompt. Enter into this box <em>np</em>, to launch Notepad++.</p>
<p>Although for some users this may seem more time-consuming than simply clicking, for those who utilize every single second when writing or coding for hours on end in their careers, keyboard shortcuts most definitely allow the user to take advantage of every second of their type time. Additionally, ergonomically, this can also help to &#8216;balance out&#8217; the usage of both hands or wrist by allowing the user to use both hands equally, instead of overworking that right hand, or left if you are a lefty, to control your mouse and all of its buttons and controls as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://notepad-pp.com/get-productive-with-notepad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Replace Notepad in Windows 7</title>
		<link>http://notepad-pp.com/how-to-replace-notepad-in-windows-7/</link>
		<comments>http://notepad-pp.com/how-to-replace-notepad-in-windows-7/#comments</comments>
		<pubDate>Wed, 06 Apr 2011 02:01:39 +0000</pubDate>
		<dc:creator>siteadmin</dc:creator>
				<category><![CDATA[Notepad ++ Software]]></category>

		<guid isPermaLink="false">http://notepad-pp.com/how-to-replace-notepad-in-windows-7/</guid>
		<description><![CDATA[Nothing is better for taking a quick look at plain text files than a great text editor. Notepad is the commonly bundled text editor for the Windows operating system. However, we are no longer restricted to such basic programming, even for basic programming. Choose Your Replacement Although replacing Notepad will require you to dig around [...]]]></description>
			<content:encoded><![CDATA[<p>Nothing is better for taking a quick look at plain text files than a great text editor. <strong>Notepad</strong> is the commonly bundled text editor for the Windows operating system. However, we are no longer restricted to such basic programming, even for basic programming.</p>
<h4>Choose Your Replacement</h4>
<p>Although replacing Notepad will require you to dig around a bit in your Windows folder, unless you are an educated user, do not mess with any files not specifically noted here. Notably, Notepad++ is one of the best text editors available, being entirely free and open source doesn&#8217;t hurt either, it helps entirely. There is no reason to pay any fees for such simple programming for such incredibly helpful purposes.</p>
<ol>
<li>You will first need to locate the executable file that will be replaced. Commonly you can expect to find this in the same location where you installed the text editor. Make a quick copy of it to your desktop and then try to execute it. This is to make sure it works when opened in a different folder.</li>
<li>In the <strong>Notepad++ <a href="http://notepad-pp.com/download-notepadpp/">download</a></strong>, you will find a small exe file that is available strictly for replacing Notepad. Using this executable you should be able to open up Notepad++ from the desktop of your local computer.</li>
<li>The file that is renamed to <em>notepad (2).exe</em>, but you will need to save it as <em>notepad.exe.bak</em>.</li>
<li>Make sure to do this for each folder that now has a Notepad2 file. There will be 2 for Windows 32-bit systems, and 3 for Windows 64-bit.</li>
<li>Once you have done this. Delete the original Notepad exes. However, even from an administrator account, you will not be allowed to simply delete it. You will need to take control of the file first.</li>
<li>Right-click on a Notepad.exe and select the <em>Properties</em> option. Choose the <em>Securities</em> tab, then click the <em>Advanced </em>button. The current owner of the file will be listed as <em>TrustedInstaller</em>. This is the file we want to take control of. Click the <em>Edit</em> button, select the proper owner which should be your own account, or you can give any <em>Administrator</em> account control. Click <em>OK.</em></li>
<li> Follow the prompts through closing an reopening the program, confirm that the owner is now what it should be. Click <em>OK,</em> and <em>OK</em> once again and close the <em>Properties</em> box. You will then right-click on Notepad and P<em>roperties </em>once again. Now head to the <em>Security </em>tab and click <em>Edit.</em> Choose the correct group or the user name from the list on top. Then you will add a check mark in the box next to <em>Full</em> control in the <em>Allow</em> column.</li>
<li>Click <em>OK, Yes</em> in the dialogue box, <em>OK </em>again and now close the <em>Properties</em> box.</li>
</ol>
<p>You can now delete Notepad and replace it with Notepad++ for all of your text editing and programming language needs.</p>
]]></content:encoded>
			<wfw:commentRss>http://notepad-pp.com/how-to-replace-notepad-in-windows-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hand Scripting Your Own Website with Notepad++</title>
		<link>http://notepad-pp.com/hand-scripting-your-own-website-with-notepad/</link>
		<comments>http://notepad-pp.com/hand-scripting-your-own-website-with-notepad/#comments</comments>
		<pubDate>Wed, 30 Mar 2011 01:48:01 +0000</pubDate>
		<dc:creator>siteadmin</dc:creator>
				<category><![CDATA[Notepad ++ Programming]]></category>

		<guid isPermaLink="false">http://notepad-pp.com/hand-scripting-your-own-website-with-notepad/</guid>
		<description><![CDATA[Some web designers choose to forego all of the available wizards and easy-to-use software applications to create their websites. Many, in fact, much prefer to script their own websites for themselves. For this reasons many website developers have begun to use their own HTML editors to achieve this end. Notepad++ is the editor of choice. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="mailto:enachevladian@gmail.com" target="_blank"> </a></p>
<p>Some web designers choose to forego all of the available wizards and easy-to-use software applications to create their websites. Many, in fact, much prefer to script their own websites for themselves. For this reasons many website developers have begun to use their own HTML editors to achieve this end. <strong>Notepad++</strong> is the editor of choice. It is an open source text editor that uses minimal resources and can replace your regular notepad program likely included in your operating system bundle.</p>
<h3>Why Script Your Own Site?</h3>
<ul>
<li>Web designers may choose to script their own sites for many reasons.</li>
<li>They may prefer to build their own frames or custom layouts.</li>
<li>They may need specific coding or other aspects that are not available in some web design software programs.</li>
</ul>
<p>They may desire to include their own tags, meta&#8217;s and other information that can sometimes be preset or default listed in some of the wizards or web design walkthroughs.</p>
<h3>Site Scripting</h3>
<p>Scripting your own site is not as difficult as it may sound. The first thing you will want to do is <strong>download a copy of <a href="http://www.notepad-pp.com/">Notepad++</a></strong>. Once installed and ready, set the programming language correctly by going to the <em>Language</em> option and selecting <em>HTML</em>.</p>
<ol>
<li>Save an empty file named <em>Index</em>. This should make the full file name Index.html. Most webmasters will recognize this name as being the default main, or landing page for most websites.</li>
<li>Create a new folder on the desktop and name it My Website.</li>
<li>Open your file.</li>
</ol>
<p>Now you will need to configure the layout. The layout of a webpage does require a few key aspects. One web page requires the head, where the title goes and the text or the body of the page.</p>
<p>A common layout for a hand scripted webpage would be:</p>
<p>&lt;HTML&gt;<br />
&lt;head&gt;</p>
<p>&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;h1&gt;The Title goes between these tags&lt;/h1&gt;<br />
&lt;p&gt;<br />
The text begins here.<br />
&lt;p&gt;And is separated by paragraphs &lt;p&gt; and page breaks &lt;br&gt;<br />
You can include anchor text with this tag.  &lt;a href=http://pictureurlgoeshere.com&gt;My Picture&lt;/a&gt;<br />
&lt;P&gt;<br />
&lt;/body&gt;<br />
&lt;/HTML&gt;</p>
<p>Be sure to always remember your / to end the current command. Without this the last command given will carry throughout the entire page. Once you have entered your information you can run a test preview on your site by clicking Save, and then heading to a browser window and clicking your F5 key.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://notepad-pp.com/hand-scripting-your-own-website-with-notepad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Make a Batch Folder with Notepad++</title>
		<link>http://notepad-pp.com/how-to-make-a-batch-folder-with-notepad/</link>
		<comments>http://notepad-pp.com/how-to-make-a-batch-folder-with-notepad/#comments</comments>
		<pubDate>Wed, 23 Mar 2011 01:42:55 +0000</pubDate>
		<dc:creator>siteadmin</dc:creator>
				<category><![CDATA[Notepad ++ How-To]]></category>

		<guid isPermaLink="false">http://notepad-pp.com/how-to-make-a-batch-folder-with-notepad/</guid>
		<description><![CDATA[A coder may have the need to create a batch folder protector to secure their work. Most often this requires a once-over of the scripting. To do this you will need Notepad++ and a bit of instruction. If you want to begin learning how to handle this type of command, you may want to check [...]]]></description>
			<content:encoded><![CDATA[<p>A coder may have the need to create a batch folder protector to secure their work. Most often this requires a once-over of the scripting. To do this you will need Notepad++ and a bit of instruction.</p>
<p>If you want to begin learning how to handle this type of command, you may want to check out lists that reveal basic batch commands to brush up before you attempt to set any configurations.</p>
<p>You will begin by opening Notepad++ and then typing:</p>
<p><em>@echo off</em></p>
<p><em>your title here</em></p>
<p><em>color 01</em></p>
<p>What does this command do?</p>
<ul>
<li>It will supply the stops command, or the @echo off from being displayed on your screen.</li>
<li>Your title here.  It creates and sets the title to whatever you name it.</li>
<li>Color 01. This selects the color for the command font.</li>
</ul>
<p>Next you will need to enter the following commands to create the prompt box for the password.</p>
<p><em>echo***********************************</em></p>
<p><em>echo</em></p>
<p><em>echo You must enter a password to continue</em></p>
<p><em>echo</em></p>
<p><em>echo***********************************</em></p>
<p>The finished command will display as below.</p>
<p>***********************************</p>
<p>You must enter a password to continue</p>
<p>***********************************</p>
<p>To set the command for password entry you will need to enter the following after the color number command.</p>
<p><em>set pass=(input your password between the parenthesis.)</em></p>
<p>Next you will enter:</p>
<p><em>set /p &#8220;pass2=Password:&#8221;</em><br />
<em> if %pass2%==%pass% goto :correct</em></p>
<p>What this command does is display the Password prompt on screen and waits while the user enters the password in the prompt. As long as the password entered is the same as the variable <em>pass</em> in <em>set pass=( </em>then it will follow the goto command.</p>
<p>Next we will create some labels.  Enter this command above the echo password prompt.</p>
<p><em>:start</em></p>
<p><em>:incorrect</em></p>
<p><em>cls</em></p>
<p><em>echo Sorry, try again.</em></p>
<p><em>pause</em></p>
<p><em>cls</em></p>
<p><em>goto :start</em></p>
<p>This command will single-handedly make the label called <em>:incorrect</em> as well as clear the screen. It will display the prompt<em> &#8220;Sorry, try again&#8221; </em>for incorrectly inputted passwords as well as providing the <em>&#8220;Press any key to continue&#8221;</em> prompt. One more screen clear and then onto the <em>label &#8220;:start&#8221;</em></p>
<p>Next you will input:</p>
<p><em>:correct</em></p>
<p><em>cls</em></p>
<p><em>echo Correct!</em></p>
<p><em>pause</em></p>
<p><em>echo Opening folder..</em></p>
<p><em>explorer (filepath of folder)</em></p>
<p><em>echo Done!</em></p>
<p><em>ping localhost 2 -n &gt;nulcls</em></p>
<p><em>del nulcls</em></p>
<p><em>exit</em></p>
<p>Once created you are nearly done making a batch folder protector. Add the following commands in the correct areas.</p>
<p>Above &#8220;:start&#8221; you will need to add:</p>
<p><em>set /a tries=3</em></p>
<p>Below the &#8220;echo you must enter..&#8221; you will input:</p>
<p><em>echo You have %tries% attempts remaining</em><strong></strong></p>
<p>Under the first cls you need to enter:</p>
<p><em>if %tries%==1 goto :fail</em><br />
<em> set /a tries=%tries -1</em><strong></strong></p>
<p>At the bottom of the script below the exit command enter<strong> </strong></p>
<p><em>:fail</em><br />
<em> echo You are out of tries!</em><br />
<em> ping localhost 2 -n &gt;nulcls</em><br />
<em> del nulcls</em><br />
<em> shutdown -s -t 00</em></p>
<p>This should wrap up the command and you will only need to save the goto file by going to <em>File, Save As</em>, onto <em>Password.bat.</em> Then <em>Save as,</em> <em>All Files</em>. Also remember to change file paths or folders to reflect the correct locations.</p>
]]></content:encoded>
			<wfw:commentRss>http://notepad-pp.com/how-to-make-a-batch-folder-with-notepad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Create Your Own Personalized Command Prompt with Notepad++</title>
		<link>http://notepad-pp.com/how-to-create-your-own-personalized-command-prompt-with-notepad/</link>
		<comments>http://notepad-pp.com/how-to-create-your-own-personalized-command-prompt-with-notepad/#comments</comments>
		<pubDate>Wed, 16 Mar 2011 01:38:00 +0000</pubDate>
		<dc:creator>siteadmin</dc:creator>
				<category><![CDATA[Notepad ++ How-To]]></category>

		<guid isPermaLink="false">http://notepad-pp.com/uncategorized/how-to-create-your-own-personalized-command-prompt-with-notepad/</guid>
		<description><![CDATA[A user may have many reasons why they would want to or even need to create their own personalized command prompts. To create your own you will need to download a Notepad++. Once you have it downloaded open the editor and begin by inserting the following code into the editor. @echo off title command name. [...]]]></description>
			<content:encoded><![CDATA[<p>A user may have many reasons why they would want to or even need to create their own personalized command prompts. To create your own you will need to download a <a href="http://www.notepad-pp.com/">Notepad++</a>.</p>
<p>Once you have it downloaded open the editor and begin by inserting the following code into the editor.</p>
<p><em>@echo off</em></p>
<p><em>title command name.</em> This will be changed to reflect the name you want to give to your command prompt. So an example so far would look like</p>
<p><em>@echo off</em></p>
<p><em>title joesfavoriteprompt</em></p>
<p><em>color 04</em></p>
<p><em>cls</em></p>
<p>The command or CMD will be as follows.</p>
<p><em>set/p cmd=</em> Your chosen prompt</p>
<p>A completed command would look like <em>set/p cmd= How can I help you Joe?</em></p>
<p>If you would like to add the date and the time to your prompt, you will add the %date% or %time% into the setup line. A correct date and time stamped setup would be,</p>
<p><em>set/p cmd=%date% %time%  How can I help you Joe?</em></p>
<p>Last you will enter the command for the prompt.</p>
<p><em>%cmd%<br />
echo<br />
GOTO CMD</em></p>
<p>Once entered this is a complete customized command prompt. You will then need to save it. It is not suggested to save this type of customize command as a .bat file but far better to save it as a command or .cmd format.</p>
<p>This is a very bare-bones prompt. With a bit more practice and some trial and error, even the least knowledgeable user will be able to teach themselves how to create their own personalized command prompts for a very wide variety of purposes.</p>
<p>In essence, for every command you carry out through your computers operating system, there is a coinciding command prompt for that activity. Although many programs now come with their own ability to set schedules or other issues that command prompts can be used for, there are still operating systems as well as software programs that may require more manual setup if automated features are desired.</p>
]]></content:encoded>
			<wfw:commentRss>http://notepad-pp.com/how-to-create-your-own-personalized-command-prompt-with-notepad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Manage the Replace Function in Notepad++</title>
		<link>http://notepad-pp.com/how-to-manage-the-replace-function-in-notepad/</link>
		<comments>http://notepad-pp.com/how-to-manage-the-replace-function-in-notepad/#comments</comments>
		<pubDate>Wed, 09 Mar 2011 01:32:20 +0000</pubDate>
		<dc:creator>siteadmin</dc:creator>
				<category><![CDATA[Notepad ++ How-To]]></category>

		<guid isPermaLink="false">http://notepad-pp.com/uncategorized/how-to-manage-the-replace-function-in-notepad/</guid>
		<description><![CDATA[Notepad++ is the perfect tool for the power user text editor. It is more or less a complete standard tool for those who do any type of language programming. There are so many functions of Notepad++ that are highly imperative to those who have to do programming and development daily, that some of the features [...]]]></description>
			<content:encoded><![CDATA[<p>Notepad++ is the perfect tool for the power user text editor. It is more or less a complete standard tool for those who do any type of language programming. There are so many functions of Notepad++ that are highly imperative to those who have to do programming and development daily, that some of the features that are highly useful, but not quite the attention getters of other features, may end up buried under all of its magnificence.</p>
<p>Just like in word processing programs, there can be the need to replace large or small pieces of text. In Notepad++ as opposed to word processors, these excerpts can be difficult coding language, which makes this text editor version of a replace feature all that much greater.</p>
<p>Doing this in Notepad++ is incredibly easy once you know how it is done!</p>
<p>If you have a portion of text. Let&#8217;s say, <em>&#8216;Here is my text&#8217;</em>, will be our test portion. You desire it to say however, <em>&#8216;This is my text.</em>&#8216; Using a basic search and replace feature would require you to find the word <em>Here</em>, and replace it with <em>This</em>. Press CTRL + H to bring up your replace function box and change fill out the information as is required.</p>
<p>However, with coding language you will find yourself using commands more to the tune of adding breaks with periods, letters, and other coding text. Be sure to exercise such features as wrap around so that you are sure you are viewing the entire code without a side scroll bar, as well as using Extended expressions or simple ones.</p>
<p>Learning to manage the replace feature properly in Notepad++ can extend your free time by reducing your work time. You will quickly find yourself one of the many Notepad++ experts after consistent use and proper research and practice.</p>
]]></content:encoded>
			<wfw:commentRss>http://notepad-pp.com/how-to-manage-the-replace-function-in-notepad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Notepad++ Has an Amazing Find and Replace Function for Code Editors</title>
		<link>http://notepad-pp.com/notepad-has-an-amazing-find-and-replace-function-for-code-editors/</link>
		<comments>http://notepad-pp.com/notepad-has-an-amazing-find-and-replace-function-for-code-editors/#comments</comments>
		<pubDate>Tue, 08 Feb 2011 23:20:34 +0000</pubDate>
		<dc:creator>site admin</dc:creator>
				<category><![CDATA[Notepad ++ Software]]></category>

		<guid isPermaLink="false">http://notepad-pp.com/uncategorized/notepad-has-an-amazing-find-and-replace-function-for-code-editors/</guid>
		<description><![CDATA[Brenda was in the middle of a major coding project rewrite when she started going cross-eyed. She had to find and replace about 75 instances of a variable and because of the editor format window, she couldn’t easily perform a find-and-replace process. She was manually scanning for each instance of the variable and going crazy! [...]]]></description>
			<content:encoded><![CDATA[<p>Brenda was in the middle of a major coding project rewrite when she started going cross-eyed. She had to find and replace about 75 instances of a variable and because of the editor format window, she couldn’t easily perform a find-and-replace process. She was manually scanning for each instance of the variable and going crazy! Thankfully, Brenda remembered that she had this amazing little utility on her system called Notepad++. This handy text editor is great for coding projects as well as general text-editing needs. The program is free to download because it is Open Source. There is also a great support community that is quick to answer questions or help new users get acclimated to the Notepad++ interface and features.</p>
<p>In Brenda’s situation, she copied and pasted the section of code that needed editing into Notepad++. One of her favorite features of the program is its robust search, find and replace capabilities. She plugged in her variable into Notepad++ search and found all 75 instances and even one hidden reference to the offending code. Brenda was able to use the replace function in Notepad++ to accurately update the variable with the new values. After copying the code back into her compiler, Brenda ran a code check and recompiled the library. It checked out perfectly and she was back in business!</p>
<p>Thanks to Notepad++, Brenda was able to perform a quick find-and-replace on her code project and proceed with more productive efforts. Brenda quickly told her colleagues who were looking for a simple code-editing program to check out Notepad++ for its fantastic features and great price. In addition, she told them that the Open Source initiative is also very active and willing to help when the user is stuck or has a question. At Brenda’s following staff meeting, she praised Notepad++ and encouraged everyone to utilize this program that she had discovered. This amazing system with multiple features helped her out of a bind and could help them as well!</p>
]]></content:encoded>
			<wfw:commentRss>http://notepad-pp.com/notepad-has-an-amazing-find-and-replace-function-for-code-editors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>After a Frantic Text from the Boss, Notepad++ Was Able to Help Fix a Macro Coding Issue</title>
		<link>http://notepad-pp.com/after-a-frantic-text-from-the-boss-notepad-was-able-to-help-fix-a-macro-coding-issue/</link>
		<comments>http://notepad-pp.com/after-a-frantic-text-from-the-boss-notepad-was-able-to-help-fix-a-macro-coding-issue/#comments</comments>
		<pubDate>Mon, 07 Feb 2011 22:50:48 +0000</pubDate>
		<dc:creator>site admin</dc:creator>
				<category><![CDATA[Notepad ++ Features]]></category>

		<guid isPermaLink="false">http://notepad-pp.com/uncategorized/after-a-frantic-text-from-the-boss-notepad-was-able-to-help-fix-a-macro-coding-issue/</guid>
		<description><![CDATA[Gretchen had just finished up a complex macro project for her boss and hit the road on a long weekend adventure with some friends. She had to also bring her electronic leash along and keep in contact with the office via her smartphone. About two hours into the trip, Gretchen received a 911 email and [...]]]></description>
			<content:encoded><![CDATA[<p>Gretchen had just finished up a complex macro project for her boss and hit the road on a long weekend adventure with some friends. She had to also bring her electronic leash along and keep in contact with the office via her smartphone. About two hours into the trip, Gretchen received a 911 email and text message from the boss. There was a problem with two of the macros she had submitted and they were due to the client that same day. It seemed the utilities had references to the development environment, so they were failing on any other computer not in her company’s development network. This was troubling because she was out of the office and without any means to edit her code. In her haste to leave the office, Gretchen had inadvertently left her laptop behind.</p>
<p>Thankfully one of her friends had a laptop and a mobile broadband access card. Gretchen quickly downloaded copies of the failing macros. But then she remembered that she didn’t have any development software on her system. Her friend was a marketing professional and had only graphic editors, no code editors. So, Gretchen turned to Google to see if there were any freeware editors that she could download quickly; she was also worried because she was on a slow mobile broadband connection and downloading any type of professional editor would take at least an hour. The boss was already steamed at Gretchen’s mistake and demanding an immediate fix. She downloaded a highly recommended light editor that supports macros and macro editing called Notepad++. Gretchen had Windows Notepad and had used it for years. But, she had never checked out Notepad++ until then.</p>
<p>The download was surprisingly quick over the slow internet connection. Installation was also a snap. Gretchen simply copied her macro code into the editing window and looked for any references to the development environment or internal network addresses. Sure enough, she had forgotten the last query in the macro had been set to write an update debug log to her main development server. Notepad++ helped Gretchen get to that line of the macro code, edit it with a statement that asked the user where to write the debug log. She quickly saved it and then tested it locally. Amazingly, the Notepad++ edit worked the first time and the macro launched without any errors. Gretchen quickly loaded up the other broken macro, used Notepad++ to edit it and then also tested it without any resulting errors. Within 30 minutes of the initial S.O.S. from the boss, she had downloaded the macro code, downloaded Notepad++, edited the macros, tested them and re-uploaded them for the boss to approve. Not too bad of an effort while cruising at 70M PH down the Pacific Coast Highway! Notepad++ is a great editor, especially in a situation where there is no access to favorite full-editing tools. This is a must for anyone who is a network administrator during the week and an out-of-town adventurer on the weekend!</p>
]]></content:encoded>
			<wfw:commentRss>http://notepad-pp.com/after-a-frantic-text-from-the-boss-notepad-was-able-to-help-fix-a-macro-coding-issue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
