Search found 120 matches

by CyberSlug
Sun Feb 15, 2004 3:47 am
Forum: Tips
Topic: One Button to comment out ANY type of code!
Replies: 10
Views: 4253

I'll update the docs :) It should help explain things better.

Stay tuned.
by CyberSlug
Sun Feb 15, 2004 2:57 am
Forum: Tips
Topic: One Button to comment out ANY type of code!
Replies: 10
Views: 4253

Make sure that there is a macro named ' Comment on your macros menu.

Also, make sure that Case StringInStr("asp", $type) appears before Case Else.

Hope that helps
by CyberSlug
Fri Feb 13, 2004 8:03 am
Forum: Enhancement Suggestions
Topic: Find - Highlight All (quick syntax highlighting)
Replies: 2
Views: 379

I might be able to hack together a way to do this.... but it would not support regular expressions.

I have some tools that let you quickly add keywords to a SYN file and then reload it. hmm
by CyberSlug
Thu Feb 12, 2004 8:37 am
Forum: Tips
Topic: One Button to comment out ANY type of code!
Replies: 10
Views: 4253

Updated versions!
I hope the Readme makes sense....
by CyberSlug
Thu Feb 12, 2004 7:11 am
Forum: Enhancement Suggestions
Topic: User Tool Icons
Replies: 5
Views: 606

It's possible to change the icons by hacking TextPad.exe; however, it might violate the TextPad license.
by CyberSlug
Thu Feb 12, 2004 6:44 am
Forum: Enhancement Suggestions
Topic: remove "print" option on right-click tab menu
Replies: 5
Views: 521

The print option can be removed from the menu by "hacking" TextPad.exe

However, posting information here on how to do this might violate the TextPad license.
by CyberSlug
Thu Feb 12, 2004 6:41 am
Forum: General
Topic: type size in find/replace
Replies: 7
Views: 554

The font size can be increased by "hacking" TextPad.exe

However, posting information on how to do this may violate the TextPad license, so I will not post anything here.
by CyberSlug
Thu Feb 12, 2004 6:36 am
Forum: Tips
Topic: One Button to comment out ANY type of code!
Replies: 10
Views: 4253

Hello! Previous versions of AutoIt did not require the Then keyword in If-statements. New versions do, so add it in. You must fix two lines: If StringInstr($tmp, "*") <> 0 Then ; file was modified since last save If PixelGetColor(25,165) <> 0 Then ;looks for black checkmark I actually have updated ...
by CyberSlug
Wed Feb 11, 2004 3:17 am
Forum: General
Topic: tws file format?
Replies: 3
Views: 327

This might help: 1) Save a workspace file, then close all open files in textpad 2) File > Open, then go to the "file format" box and change it to "binary" 3) Then select the TWS file and open it 4) It seems TWS files contain a lot of non-readable characters :( However, you can get a list of all the ...
by CyberSlug
Fri Feb 06, 2004 5:11 am
Forum: Enhancement Suggestions
Topic: Is it possible to change the views of visible space etc.?
Replies: 1
Views: 186

here's a releated post, if you are interested.
by CyberSlug
Thu Feb 05, 2004 7:50 pm
Forum: Enhancement Suggestions
Topic: "Print..." custom icon
Replies: 2
Views: 315

This can be accomplished with third-party software. For example, create a user-defined tool to this executable , and then put it on your toolbar; see the TextPad help file if you need to. If you'd rather not use an untrusted executbale, then you can create it yourself using the AutoIt v3 scripting ...
by CyberSlug
Mon Feb 02, 2004 2:38 am
Forum: General
Topic: Open document from File Explore in same instance of Textpad
Replies: 6
Views: 467

walidaly wrote:any ideas otherthan RTFM!
Backup or write down any settings and try reinstalling TextPad?
by CyberSlug
Sun Feb 01, 2004 8:45 pm
Forum: Enhancement Suggestions
Topic: Find in selected text.
Replies: 3
Views: 469

Edit: Here's a workaround Requires the program Enabler 1) Select Text and goto the Replace dialog 2) Put info in the "Find what" field 3) Choose the selected text option 4) Notice that the "Find Next" button is grayed out 5) Use the Enabler program to un-gray the button and click it! Note: If a ...
by CyberSlug
Fri Jan 30, 2004 10:35 pm
Forum: Enhancement Suggestions
Topic: Block Select
Replies: 1
Views: 967

Arrow keys work for me if TextPad is in block-select mode:

Configure > Block Select Mode
(word-wrap must be unchecked)

But then any selections you make with keyboard or mouse are block-selected until you turn it off again.
by CyberSlug
Fri Jan 23, 2004 12:37 am
Forum: General
Topic: Syntax Hightlighting and Semi-Colon Character
Replies: 7
Views: 870

Are there any parts of the syntax file you aren't using? You could try this: CharStart = ; CharEnd = ; Or you could try: SingleCommentAlt = ;; Then set the colors you want in TextPad prefrences. Hope that helps EDIT: By the way many parts of the syntax file can be blank (and sometimes completly ...