Search found 120 matches

by CyberSlug
Sun Dec 14, 2003 4:26 am
Forum: General
Topic: A minor annoyance, the select program dialog box.
Replies: 9
Views: 677

Bob's method works for me.... :?: I'm pretty sure the "My Documents" folder is the default entry, so is the change not getting written/read correctly? Problem with registry key permisisons or something?
by CyberSlug
Sat Dec 13, 2003 7:05 am
Forum: Enhancement Suggestions
Topic: (Some) Tools dependant upon file type!
Replies: 0
Views: 232

(Some) Tools dependant upon file type!

The Tools menu (and Macros menu) should only contain entries relavant to your active file type (document class). Right now all tools are global. The idea is to also allow local tools. For example, your C++ tools might include: Compile, Comment out, and Uncomment Your Java tools menu might include ...
by CyberSlug
Fri Dec 12, 2003 11:03 pm
Forum: Enhancement Suggestions
Topic: Metadata
Replies: 11
Views: 1761

Just tossing out ideas: 1) How about something analogous to web browser cookies? You could have a central storage location (presumably local); however, these "cookies" might be difficult to transfer to other computers... 2) NTFS allows for storage of metadata along with files. However, this feature ...
by CyberSlug
Fri Dec 12, 2003 10:49 pm
Forum: Enhancement Suggestions
Topic: Associate Compiler Program with File types
Replies: 4
Views: 564

Actually, it would be simple (and cool) if the tools displayed on the tools menu could be dependent upon the file extension of the current file. I agree!! We should be able to create global tools (available to all file classes) AND local tools (available to the active file class). There should be ...
by CyberSlug
Fri Dec 12, 2003 2:36 am
Forum: General
Topic: Em dash location
Replies: 8
Views: 574

There are quite a few ways:
1) Hold down Alt, then press 0151 on the Number Pad (somewhat tricky on laptop keyboards)
2) Start, Run charmap and copy and paste the symbol...
3) Use the ASCII chars clip library and click on the symbol to insert...

Hope that helps
by CyberSlug
Fri Dec 12, 2003 2:27 am
Forum: Enhancement Suggestions
Topic: Associate Compiler Program with File types
Replies: 4
Views: 564

By next week, I hope to have something like this in my collection of tools: http://www.textpad.com/forum/viewtopic.php?t=4721 Could you provide a list of the file types and compiler command line arguments you use? Here's a partially working script.... ; Requires AutoIt3.exe from http://www ...
by CyberSlug
Thu Dec 11, 2003 4:25 am
Forum: General
Topic: Editing Workspace Files (*.tws) directly
Replies: 11
Views: 1830

Since TWS files have special meaning to TextPad, you can't use TextPad to edit them. You must use another text editor. I saved two documents on my desktop plus a third in a subfolder, and I saved a workspace for them. I opened the worksapce file in Notepad: ÿÿ TextPad txt ECOD Document1.txt TIDE , ...
by CyberSlug
Tue Dec 09, 2003 11:25 pm
Forum: General
Topic: faq bug
Replies: 2
Views: 237

You read the FAQ?! Now *that's* a show stopper. :D

I confirm the bug.
http://www.textpad.com/support/faq/index.html
both the first and second links point to javascript:ShowAns('FAQ01')
by CyberSlug
Mon Dec 08, 2003 8:56 pm
Forum: General
Topic: General guide for writing tools?
Replies: 5
Views: 387

I second what MudGuard says....

I recommend a scripting program like AutoIt if you want simple GUI stuff like FileOpenDialog and MsgBox.

Hope that helps
by CyberSlug
Mon Dec 08, 2003 8:50 pm
Forum: Enhancement Suggestions
Topic: Find in Columns
Replies: 1
Views: 231

I think this is a good suggestion!

Just so you know, I belive regular expressions can help you get similar functionality: ^.{26}searchString if using POSIX reg expressions or ^.\{26\}searchString if using TextPad's default
finds the searchString if it begins in column 27.
by CyberSlug
Sun Dec 07, 2003 4:41 am
Forum: General
Topic: How to eliminate white space?
Replies: 3
Views: 356

In that case, try [ ]+$

See "How to Use Regular Expressions" in TextPad's help file for more info.
by CyberSlug
Sun Dec 07, 2003 3:31 am
Forum: General
Topic: How to eliminate white space?
Replies: 3
Views: 356

A regular expression search and replace can remove whitespace from the end of each line. Click Search, Replace then fill in the "Find what' field with [[:blank:]]+$ and leave the other field blank. Make sure the "use regular expressions" box is checked. How the regular expression works: [[:blank ...
by CyberSlug
Fri Dec 05, 2003 12:38 am
Forum: General
Topic: Using \t, cant replace a character with a tab
Replies: 3
Views: 267

On the serach&replace dialog window you need to click the checkbox for "use regular expressions"

Otherwise, you could copy a tab character to the clipboard and paste it to the replace field.

Hope that helps
by CyberSlug
Thu Dec 04, 2003 11:17 pm
Forum: Enhancement Suggestions
Topic: Suggestions
Replies: 3
Views: 638

I have a program to solve #2, but it *might* only work for the English version of TextPad. If you are using an Italian version, can you tell me the Menu names? English version: [ F ile E dit S earch V iew T ools M acros C onfigure W indow H elp] EDIT: Here's the tool and instructions anyway: How to ...
by CyberSlug
Thu Dec 04, 2003 10:05 pm
Forum: Enhancement Suggestions
Topic: Mark/unmark a block as comment
Replies: 1
Views: 265

I hope TextPad gets this feature! In the meantime, you can try a program I wrote http://www.textpad.com/forum/viewtopic.php?t=4721 I also have a slightly different version posted at http://www.textpad.com/forum/viewtopic.php?t=4534 I have some changes to add (once winter break comes), but it should ...