As I love Textpad,I had to install the newest version ... Damns have had so much work that did notice when it came to the market ....
download TextpadSome cool new thinks:
Ctrl + Shift + O , type some regex - *.pl will open all the Perl files in the current directory (with subdirectories )
::FILE BackUp_TEXTPAD_SETTINGS.5.0.3.cmd
@echo ON
REM This tool makes a complete backup of all your TextPad settings
REM in the Windows Registry.
REM © 2002 Rasmus Andersson [flajm.com / rasmusandersson.com]
REM REMOVED COMMAND LINE PARAM PASSING
REM ADDED DOUBLE EXPORT FOR CURRENT SETTINGS ALSO FOR TP 5
REM Yordan Georgiev
REM FIND AND REPLACE ::pause with ::pause for debugging ; )
:: THIS IS THE PATH TO THE REGISRY
set KEYPATH=HKEY_CURRENT_USER\Software\Helios\TextPad 5
:: THIS IS THE NAME OF THE DATE LABELED SETTINGS REG FILE
set BUFILENAME=tps__%date%.reg
:: THIS IS THE "CURRENT SETTINGS" FILE
set CurrentSettings=CurrentSettings.reg
::ACTION
::BACKUP THE LATEST SETTINGS INTO SEPARATE FILE
REG EXPORT "%KEYPATH%" "%CurrentSettings%"
::pause
::BACKUP THE SAME SETTINGS FOR HISTORICAL BACKUP
REG EXPORT "%KEYPATH%" "%BUFILENAME%"
::pause
:: CREATE THE COPY OF THE SYSTEM FOLDER ON THE CURRENT DIRECTORY
mkdir system
:: NOW COPY ALL THE SYN FILES
xcopy /s /e /y "C:\Program Files\TextPad 5\system" "%cd%\system"
::pause
::COPY ALL THE MACROS ETC. STUFF
xcopy /s /e /y "%appdata%\Helios" "%cd%"
::pause
ECHO I 'm done buy !
::pause
EXIT
::FILE IMPORT_TEXTPAD_SETTINGS.5.0.3.cmd
:: SHOULD BE THE SAME NAME AS THE ONE IN BACK UP TEXTPAD BATCH
REM COURTESY TO EXPORT VERSION OF
REM © 2002 Rasmus Andersson [flajm.com / rasmusandersson.com]
REM ADDED SIMPLE IMPORT ADJUSTED TO TP 5 version
REM Yordan Georgiev
:: THIS IS THE "CURRENT SETTINGS" FILE
set CurrentSettings=CurrentSettings.reg
:: IMPORT THE MOST LATEST SETTINGS INTO THE REGISTRY
REG IMPORT "%CurrentSettings%"
:: NOW COPY ALL THE SYN FILES
xcopy /s /e /y "%cd%\system" "C:\Program Files\TextPad 5\system"
::pause
::COPY ALL THE MACROS ETC. STUFF
xcopy /s /e /y "%cd%\TextPad" "%appdata%\Helios\TextPad"
::pause