<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Tweaking TextPad &#8211; A Few Tips</title>
	<atom:link href="http://www.codedread.com/blog/archives/2005/07/08/tweaking-textpad-a-few-tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.codedread.com/blog/archives/2005/07/08/tweaking-textpad-a-few-tips/</link>
	<description></description>
	<lastBuildDate>Tue, 17 Jan 2012 21:56:44 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: software developers</title>
		<link>http://www.codedread.com/blog/archives/2005/07/08/tweaking-textpad-a-few-tips/comment-page-1/#comment-201</link>
		<dc:creator>software developers</dc:creator>
		<pubDate>Fri, 16 Oct 2009 14:33:14 +0000</pubDate>
		<guid isPermaLink="false">/?p=117#comment-201</guid>
		<description>Hey, that was interesting,

Thanks for the help and infomation that your article has offered on for tweaking text pad..

Keep up the great work,

Thanks for bringing this up</description>
		<content:encoded><![CDATA[<p>Hey, that was interesting,</p>
<p>Thanks for the help and infomation that your article has offered on for tweaking text pad..</p>
<p>Keep up the great work,</p>
<p>Thanks for bringing this up</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robin</title>
		<link>http://www.codedread.com/blog/archives/2005/07/08/tweaking-textpad-a-few-tips/comment-page-1/#comment-200</link>
		<dc:creator>Robin</dc:creator>
		<pubDate>Wed, 17 Dec 2008 22:28:29 +0000</pubDate>
		<guid isPermaLink="false">/?p=117#comment-200</guid>
		<description>Turning on word wrap every time I open a document was getting incredibly old. Thanks so much for the hint on where to look to set this!</description>
		<content:encoded><![CDATA[<p>Turning on word wrap every time I open a document was getting incredibly old. Thanks so much for the hint on where to look to set this!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rosie</title>
		<link>http://www.codedread.com/blog/archives/2005/07/08/tweaking-textpad-a-few-tips/comment-page-1/#comment-199</link>
		<dc:creator>Rosie</dc:creator>
		<pubDate>Sun, 22 Apr 2007 10:38:33 +0000</pubDate>
		<guid isPermaLink="false">/?p=117#comment-199</guid>
		<description>I thank you for your comment.</description>
		<content:encoded><![CDATA[<p>I thank you for your comment.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yordan Georgiev</title>
		<link>http://www.codedread.com/blog/archives/2005/07/08/tweaking-textpad-a-few-tips/comment-page-1/#comment-198</link>
		<dc:creator>Yordan Georgiev</dc:creator>
		<pubDate>Tue, 26 Dec 2006 20:11:04 +0000</pubDate>
		<guid isPermaLink="false">/?p=117#comment-198</guid>
		<description>@echo off

REM       This tool makes a complete backup of all your TextPad settings
REM       in the Windows Registry.
REM       The area of useage is quite wide. You can make custom &quot;workspaces&quot;
REM       trough launching different .reg-files. Also, you may set the &quot;prompt for parameters&quot;
REM       checkbox in textpad. Also, &quot;Capture output&quot; &amp; &quot;supress until...&quot; sould be checked.
REM
REM       In the &quot;Parameters&quot; textfield you can type in the deafult name for a
REM       backup. ex: &quot;texpad.reg&quot; or &quot;c:\textpad.reg&quot;
REM
REM       As the &quot;initial folder&quot; you can type in a default value, leave it blank or use $FileDir
REM       © 2002 Rasmus Andersson [flajm.com / rasmusandersson.com]

REM Dim vars
set KEYPATH=HKEY_CURRENT_USER\Software\Helios\TextPad 4
set BUFILENAME=tps__%date%.reg

REM check for errors
:DOCHECK
	if &quot;%BUFILENAME%&quot;==&quot;&quot; goto :REPORTERROR


:DOBACKUP
REG EXPORT &quot;%KEYPATH%&quot; &quot;%BUFILENAME%&quot;



REM Report success
:SUCCESS
	echo Registry backup of &quot;%KEYPATH%&quot;
	echo successfully saved to &quot;%BUFILENAME%&quot;
	goto :ENDBAT


REM reports an error
:REPORTERROR
	echo You must specify an output filename for the
	echo backup.
	echo Example: c:\appbackup.reg, textpad.reg, \\computer\folder\backup.reg


REM Exits and quits
:ENDBAT
	EXIT
::TODO ADD THE FILECOPYING of syntax and spelling files in C:\Program Files\TextPad 4\*.*</description>
		<content:encoded><![CDATA[<p>@echo off</p>
<p>REM       This tool makes a complete backup of all your TextPad settings<br />
REM       in the Windows Registry.<br />
REM       The area of useage is quite wide. You can make custom &#8220;workspaces&#8221;<br />
REM       trough launching different .reg-files. Also, you may set the &#8220;prompt for parameters&#8221;<br />
REM       checkbox in textpad. Also, &#8220;Capture output&#8221; &#38; &#8220;supress until&#8230;&#8221; sould be checked.<br />
REM<br />
REM       In the &#8220;Parameters&#8221; textfield you can type in the deafult name for a<br />
REM       backup. ex: &#8220;texpad.reg&#8221; or &#8220;c:\textpad.reg&#8221;<br />
REM<br />
REM       As the &#8220;initial folder&#8221; you can type in a default value, leave it blank or use $FileDir<br />
REM       © 2002 Rasmus Andersson [flajm.com / rasmusandersson.com]</p>
<p>REM Dim vars<br />
set KEYPATH=HKEY_CURRENT_USER\Software\Helios\TextPad 4<br />
set BUFILENAME=tps__%date%.reg</p>
<p>REM check for errors <img src='http://www.codedread.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> OCHECK<br />
	if &#8220;%BUFILENAME%&#8221;==&#8221;" goto :REPORTERROR</p>
<p> <img src='http://www.codedread.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> OBACKUP<br />
REG EXPORT &#8220;%KEYPATH%&#8221; &#8220;%BUFILENAME%&#8221;</p>
<p>REM Report success<br />
:SUCCESS<br />
	echo Registry backup of &#8220;%KEYPATH%&#8221;<br />
	echo successfully saved to &#8220;%BUFILENAME%&#8221;<br />
	goto :ENDBAT</p>
<p>REM reports an error<br />
:REPORTERROR<br />
	echo You must specify an output filename for the<br />
	echo backup.<br />
	echo Example: c:\appbackup.reg, textpad.reg, \\computer\folder\backup.reg</p>
<p>REM Exits and quits<br />
:ENDBAT<br />
	EXIT<br />
::TODO ADD THE FILECOPYING of syntax and spelling files in C:\Program Files\TextPad 4\*.*</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Schiller</title>
		<link>http://www.codedread.com/blog/archives/2005/07/08/tweaking-textpad-a-few-tips/comment-page-1/#comment-197</link>
		<dc:creator>Jeff Schiller</dc:creator>
		<pubDate>Wed, 14 Jun 2006 21:40:22 +0000</pubDate>
		<guid isPermaLink="false">/?p=117#comment-197</guid>
		<description>You&#039;re right!  A Portable TextPad deployable on a USB flash drive would be great!</description>
		<content:encoded><![CDATA[<p>You&#8217;re right!  A Portable TextPad deployable on a USB flash drive would be great!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yordan Georgiev</title>
		<link>http://www.codedread.com/blog/archives/2005/07/08/tweaking-textpad-a-few-tips/comment-page-1/#comment-196</link>
		<dc:creator>Yordan Georgiev</dc:creator>
		<pubDate>Wed, 14 Jun 2006 18:48:56 +0000</pubDate>
		<guid isPermaLink="false">/?p=117#comment-196</guid>
		<description>The whole trick with TexPad is to able to have all the executables + syntax files + batch + regs in order to get it fully portable even on machines you might not be allow to install it .

For me it takes painfull long to configure all the perl , java , html syntax highliting and this is a small project I have do some day, but let me know if somebody else cleverer has done it already - I do not like to reinvent the wheel ....</description>
		<content:encoded><![CDATA[<p>The whole trick with TexPad is to able to have all the executables + syntax files + batch + regs in order to get it fully portable even on machines you might not be allow to install it .</p>
<p>For me it takes painfull long to configure all the perl , java , html syntax highliting and this is a small project I have do some day, but let me know if somebody else cleverer has done it already &#8211; I do not like to reinvent the wheel &#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ddhr.org - David Hosier</title>
		<link>http://www.codedread.com/blog/archives/2005/07/08/tweaking-textpad-a-few-tips/comment-page-1/#comment-195</link>
		<dc:creator>ddhr.org - David Hosier</dc:creator>
		<pubDate>Tue, 10 Jan 2006 03:24:03 +0000</pubDate>
		<guid isPermaLink="false">/?p=117#comment-195</guid>
		<description>[...] One problem that I encountered and have been dealing with is the fact (or so I thought) that you couldn&#039;t turn on word wrap by default. There&#039;s a little button on the toolbar that does it, but I always had to click on that to enable word wrap. But then I found this link that said, &quot;Click on Configure &gt; Preferences. Under &#039;Document Classes&#039; on the left, click the &#039;+&#039; button and then choose &#039;Default&#039;. You should see the default preferences for files show in the right-side of the pane. Make sure &#039;Word wrap long lines&#039; is checked and hit &#039;Ok&#039;.&quot; I tried it and it sort of worked, but I fooled around with it and found that if you make sure that the box is checked for each of the document types, it&#039;ll work all the time. So that&#039;s what I did and it worked great.   [ Mon, 09 Jan 2006 @ 22:23:58 &#124; Tech/Computers ]    No Comments   Leave a comment [...]</description>
		<content:encoded><![CDATA[<p>[...] One problem that I encountered and have been dealing with is the fact (or so I thought) that you couldn&#8217;t turn on word wrap by default. There&#8217;s a little button on the toolbar that does it, but I always had to click on that to enable word wrap. But then I found this link that said, &#8220;Click on Configure &#62; Preferences. Under &#8216;Document Classes&#8217; on the left, click the &#8216;+&#8217; button and then choose &#8216;Default&#8217;. You should see the default preferences for files show in the right-side of the pane. Make sure &#8216;Word wrap long lines&#8217; is checked and hit &#8216;Ok&#8217;.&#8221; I tried it and it sort of worked, but I fooled around with it and found that if you make sure that the box is checked for each of the document types, it&#8217;ll work all the time. So that&#8217;s what I did and it worked great.   [ Mon, 09 Jan 2006 @ 22:23:58 &#124; Tech/Computers ]    No Comments   Leave a comment [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott Vodicka</title>
		<link>http://www.codedread.com/blog/archives/2005/07/08/tweaking-textpad-a-few-tips/comment-page-1/#comment-194</link>
		<dc:creator>Scott Vodicka</dc:creator>
		<pubDate>Wed, 26 Oct 2005 13:06:26 +0000</pubDate>
		<guid isPermaLink="false">/?p=117#comment-194</guid>
		<description>Thanks for the tips.  I&#039;ve been wondering about the auto wrap and just did not take the time to search for it.  I knew it had to be there.  You saved me some time.

Scott Vodicka

Cary, NC</description>
		<content:encoded><![CDATA[<p>Thanks for the tips.  I&#8217;ve been wondering about the auto wrap and just did not take the time to search for it.  I knew it had to be there.  You saved me some time.</p>
<p>Scott Vodicka</p>
<p>Cary, NC</p>
]]></content:encoded>
	</item>
</channel>
</rss>

