PC Review


Reply
Thread Tools Rate Thread

Duplicating text/html templates - how ?

 
 
John Fitzsimons
Guest
Posts: n/a
 
      6th Jul 2004

I was thinking of doing a project yesterday (since abandoned) that
required multiple copies of a template. In text or html. Is there a
quick and easy way to do this ? A utility perhaps ?

I know I can create a file, go File - Save as and change the
filename, but that would get very tedious after a while. Particularly
if I wanted dozens of identical files.

Suggestions anyone ?

Regards, John.

 
Reply With Quote
 
 
 
 
R. L.
Guest
Posts: n/a
 
      6th Jul 2004
John Fitzsimons <(E-Mail Removed)> says in
news:(E-Mail Removed):
>
> I was thinking of doing a project yesterday (since
> abandoned) that required multiple copies of a template. In
> text or html. Is there a quick and easy way to do this ? A
> utility perhaps ?
>
> I know I can create a file, go File - Save as and change
> the filename, but that would get very tedious after a
> while. Particularly if I wanted dozens of identical files.
>
> Suggestions anyone ?
>
> Regards, John.
>


Hi, John, do you use AutoIt? If you do, here are a few lines
that would work:

- change "text.txt" in "\text.txt" into the filename you want to
copy;
- change "text" in "\text" into the destination filename;
- change ".txt" into the destination filename extension would
do.
- change "5" in "$num = 5" into the number of file you want to
copy.


;================
$num = 1
do
FileCopy (@ScriptDir & "\text.txt", @ScriptDir & "\text" & $num
&".txt")

$num = $num + 1
until $num = 5

Exit
; ==========================



--
RL
Unofficial Adaware Updater; Little (File) Backer Upper; Uptime
Quickie; Tray Quickie; Google Quickie; Lefty Animated Cursors;
http://home.earthlink.net/~ringomei/page2.html
*******************************************
Places that list the Pricelessware annual voting results and
information:
http://www.pricelessware.org, http://lesspriceware.netfirms.com/
 
Reply With Quote
 
R. L.
Guest
Posts: n/a
 
      6th Jul 2004
"R. L." <ringomeinew@_hot_mail_.YOU_KNOW_THE_REST> says in
news:Xns951E10CEEC322ringomei@127.0.0.1:

> John Fitzsimons <(E-Mail Removed)> says in
> news:(E-Mail Removed):
>>
>> I was thinking of doing a project yesterday (since
>> abandoned) that required multiple copies of a template. In
>> text or html. Is there a quick and easy way to do this ? A
>> utility perhaps ?
>>
>> I know I can create a file, go File - Save as and change
>> the filename, but that would get very tedious after a
>> while. Particularly if I wanted dozens of identical files.
>>
>> Suggestions anyone ?
>>
>> Regards, John.



> Hi, John, do you use AutoIt? If you do, here are a few
> lines that would work:
>
> - change "text.txt" in "\text.txt" into the filename you
> want to copy;
> - change "text" in "\text" into the destination filename;
> - change ".txt" into the destination filename extension
> would do.
> - change "5" in "$num = 5" into the number of file you want
> to copy.
>
>
> ;================
> $num = 1
> do
> FileCopy (@ScriptDir & "\text.txt", @ScriptDir & "\text" &
> $num &".txt")
>
> $num = $num + 1
> until $num = 5
>
> Exit
> ; ==========================
>



In fact, just to have fun, I made one, here it is :-)


http://home.earthlink.net/~rl_freewa...eGenerater.exe
(96kb)



--
RL
Unofficial Adaware Updater; Little (File) Backer Upper; Uptime
Quickie; Tray Quickie; Google Quickie; Lefty Animated
Cursors;
http://home.earthlink.net/~ringomei/page2.html
*******************************************
Places that list the Pricelessware annual voting results and
information:
http://www.pricelessware.org,
http://lesspriceware.netfirms.com/
 
Reply With Quote
 
MLC
Guest
Posts: n/a
 
      6th Jul 2004
marted́ 06/lug/2004 _R. L._ in <news:Xns951E8FBEBFBB1ringomei@127.0.0.1>:

> In fact, just to have fun, I made one, here it is :-)
>
> http://home.earthlink.net/~rl_freewa...eGenerater.exe
> (96kb)


R. L., you rock! )
How many of you there are?
It's impossible that only one human being can produce so many works in so
little time! ;-)

--
Maria Luisa C - 06/07/2004 20.27.08, here.
http://fido.altervista.org/index.php
 
Reply With Quote
 
R. L.
Guest
Posts: n/a
 
      6th Jul 2004
MLC <(E-Mail Removed)> says in
news:(E-Mail Removed):

> marted́ 06/lug/2004 _R. L._ in
> <news:Xns951E8FBEBFBB1ringomei@127.0.0.1>:
>
>> In fact, just to have fun, I made one, here it is :-)
>>
>> http://home.earthlink.net/~rl_freewa...eGenerater.exe
>> (96kb)




> R. L., you rock! )

thanks :-)

> How many of you there are?

Unfortunately, only one

> It's impossible that only one human being can produce so
> many works in so little time! ;-)


:-P hmmm...you assume that I am a human being....a good sign
.... ;-)




--
RL
Unofficial Adaware Updater; Little (File) Backer Upper; Uptime
Quickie; Tray Quickie; Google Quickie; Lefty Animated
Cursors;
http://home.earthlink.net/~ringomei/page2.html
*******************************************
Places that list the Pricelessware annual voting results and
information:
http://www.pricelessware.org,
http://lesspriceware.netfirms.com/
 
Reply With Quote
 
Frank Bohan
Guest
Posts: n/a
 
      6th Jul 2004

"John Fitzsimons" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
>
> I was thinking of doing a project yesterday (since abandoned) that
> required multiple copies of a template. In text or html. Is there a
> quick and easy way to do this ? A utility perhaps ?
>
> I know I can create a file, go File - Save as and change the
> filename, but that would get very tedious after a while. Particularly
> if I wanted dozens of identical files.
>
> Suggestions anyone ?
>
> Regards, John.


RJH Extensions includes a right-click option in Explorer to duplicate one or
more files in the same directory, adding a bracketed (1) to the duplicate.
You could double up by multiplying the two files to four, four to eight etc.
The program adds other useful right-click functions including command
prompt, saving path to clipboard, file encryption and printing/saving
directory list.
http://www.rjhsoftware.com

===

Frank Bohan
¶ There are two instruments worse than a clarinet. Two clarinets.


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Html templates opening as plain text e-mail Clive Microsoft Outlook Discussion 1 2nd Apr 2009 04:06 PM
Text duplicating itself in text boxes on subform. news.microsoft.com Microsoft Access 4 30th Jun 2007 04:46 PM
Duplicating Excel templates =?Utf-8?B?SmVmZnJleQ==?= Microsoft Excel Misc 6 9th Jun 2006 09:46 PM
Certificate Templates - Duplicating template - Issue does not work klose Microsoft Windows 2000 Security 5 21st Sep 2004 03:46 PM
Outlook Express 6-receiving email with an .html attachment duplicating same text from body of email =?Utf-8?B?TGlseQ==?= Windows XP Internet Explorer 1 22nd Jan 2004 05:29 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 05:00 PM.