Search found 103 matches

by Ed
Thu Dec 11, 2003 3:39 pm
Forum: General
Topic: Is this a reg exp bug or is it just me?
Replies: 8
Views: 484

Is this a reg exp bug or is it just me?

Search for (regexp non-Posix) ^.*: *\|\\n"
Replace All with nothing

Before:
"PcTestData:\n"
"PcAnswerPosX: 4027727.93728731\n"

After:
\n"
4027727.93728731

I was expecting:

4027727.93728731
by Ed
Mon Nov 24, 2003 4:03 pm
Forum: General
Topic: Change bars
Replies: 6
Views: 314

Try ExamDiff Pro
http://www.prestosoft.com/ps.asp?page=edp_examdiffpro
It integrates very well with TextPad
by Ed
Mon Nov 17, 2003 4:33 pm
Forum: General
Topic: Replace TextPad for Notepad
Replies: 1
Views: 257

by Ed
Sat Nov 08, 2003 5:18 pm
Forum: General
Topic: How to run tool with unsaved file
Replies: 15
Views: 2543

I think you may be misunderstanding what TextPad does. The macros in TextPad (its only weak point) have to be recorded as a sequence of keyboard strokes. If you write an SQL command and want to run it as a tool then I guess the tool you want to create will have the SQL interpreter as a command with ...
by Ed
Sat Nov 08, 2003 4:50 pm
Forum: General
Topic: How to run tool with unsaved file
Replies: 15
Views: 2543

Maybe I've misunderstood. But what exactly are you trying to achieve?
by Ed
Sat Nov 08, 2003 3:38 pm
Forum: General
Topic: How to run tool with unsaved file
Replies: 15
Views: 2543

If you create a specific tool rather than use the general purpose "Run" command (Confgure>Preferences>Tools>Add) then there is an option to "Save all files first" uncheck this. You can also select "prompt for parameters" which makes it the equivalent of the run command....
by Ed
Wed Oct 22, 2003 2:13 pm
Forum: General
Topic: Deleting a macro
Replies: 1
Views: 78

Configure->Preferences->Macros->"Macros on Menu" select macro, delete
by Ed
Thu Sep 11, 2003 1:17 pm
Forum: General
Topic: Problem. double clicking on "---------" and syntax
Replies: 1
Views: 179

Configure->Preferences->Document Classes->Tcl->Syntax->Other Characters in Word
Add -
by Ed
Mon Sep 08, 2003 2:23 pm
Forum: General
Topic: Search and Replace with Regular Expressions
Replies: 8
Views: 550

Reg exp checked
Match case checked
Configure->Preferences->Editor->Use Posix... - Unchecked
Search for
\([a-z]\)\([A-Z]\)
replace with
\1\n\2
by Ed
Mon Sep 08, 2003 12:24 pm
Forum: General
Topic: Search and Replace with Regular Expressions
Replies: 8
Views: 550

Search for
TextPad
replace with
Text\nPad

with "regular expression" checked
by Ed
Wed Aug 27, 2003 2:32 pm
Forum: General
Topic: Help with reformatting lines of code
Replies: 1
Views: 101

Help with reformatting lines of code

I have code that looks like this in a number of files:- Info ( "something\n", xyz ); I want to put it all one one line : Info("something\n", xyz); The key things are it starts with Info and ends with ; I think I want a macro to operate over all the files and use Ctrl-J, however, ...
by Ed
Sun Jul 27, 2003 1:40 pm
Forum: General
Topic: save/open folder default to last working folder?
Replies: 3
Views: 163

Does
Configure->Preferences->Genereal->"Working folder follows active document"
fit the bill?
by Ed
Mon Jul 21, 2003 10:32 am
Forum: General
Topic: How to make a paste across severl files all at once?
Replies: 2
Views: 129

I have a little program here that will append a given string to a list of files. This list can be obtained by Edit->Copy Other->All File Names. This will put all the currently open files into the list. The program is invoked as a command-line add "Dummy string" filelist.txt If you want it ...
by Ed
Thu Jul 17, 2003 9:26 pm
Forum: General
Topic: Is this a Search and Replace bug?
Replies: 3
Views: 252

Yes. I get the same problem, but only when word-wrap is selected.
by Ed
Thu Jul 17, 2003 9:06 am
Forum: General
Topic: How to make a paste across severl files all at once?
Replies: 2
Views: 129

I don't think it's possible. (Now there's a challenge!) A possible approach would be to write a macro that goes to the end of a file and appends a dummy string that is guaranteed not to occur in your file (eg "This string should not be here ~~##~~") Cause the macro to operate on your 40 fi...