Search found 70 matches

by CyberSlug
Mon May 17, 2004 5:57 am
Forum: Java
Topic: DOS slams shut
Replies: 1
Views: 1843

Try adding cmd /k to the beginning of your command. This tells the "DOS" console to carry out the specified command but remain open. In fact, you can click Start, Run and type in cmd /k cmd /? to get more information :)

Sometimes you even need cmd /k start "" added to the beginning as mentioned in ...
by CyberSlug
Sat May 15, 2004 3:56 am
Forum: General
Topic: winhlp32 - how does it work?
Replies: 2
Views: 745

You can try KeyHH which provides this ability for most recent help files.

Ironically, the documentation about how to install and run the program is poor, so here are some tips:

1) The stetup program creates "C:\WINDOWS\KeyHH.exe" and "C:\Program Files\KeyWorks\KeyHH.its" (Setup never tells you ...
by CyberSlug
Tue May 11, 2004 5:28 am
Forum: General
Topic: Not Printing Underscores (_)
Replies: 2
Views: 720

Re: Not Printing Underscores (_)

And let me add: Does anyone have a solution?
Click on "Yes" .... It's a link to http://textpad.com/forum/viewtopic.php? ... nderscores
by CyberSlug
Sun May 09, 2004 3:06 am
Forum: General
Topic: file name in title bar of window
Replies: 2
Views: 848

I've seen this asked but never solved .... Here are possible workarounds:

1) View > Document tabs. Each tab should contain a file name.

2) If you usually work with files from one folder, you can use VSubst to assign a virtual drive letter to that long path. For eamples, "C:\Documents and Settings ...
by CyberSlug
Thu May 06, 2004 8:47 pm
Forum: General
Topic: Visual Page Break Marco?
Replies: 2
Views: 846

And now I'm stuck on how to manually say every X lines add a page break. Perhaps this would be addressed with AutoIt (search the forums and you should have plenty of hits)

:) AutoIt v3 can be obtained from http://www.hiddensoft.com

You need to create a tool in TextPad (Configure > Preferences ...
by CyberSlug
Fri Apr 16, 2004 5:47 am
Forum: General
Topic: Getting Tool Parameters
Replies: 1
Views: 667

You need to use a scripting language such as AutoIt v3 to do that. Here's one way:

Command: AutoIt3.exe foo.au3
Parameters: $Sel
Initial Folder: $FileDir
;Contents of foo.au3
; Only run your tool if $SEL or the text the user provides is not null
$text = $CmdLine[1]
$text = "" Then $text ...
by CyberSlug
Thu Apr 01, 2004 2:16 am
Forum: General
Topic: Search for something NOT there
Replies: 4
Views: 1183

If the files in question contain only one line, could you filter them by file size?


Otherwise, If you are comfortable with command-line tools here are some ideas:

FINDSTR comes with at least Windows XP and has two switches that might help:
/V Prints only lines that do not contain a match.
/M ...
by CyberSlug
Fri Mar 26, 2004 9:41 pm
Forum: General
Topic: How to make the current cursor line top of the screen
Replies: 2
Views: 782

Alt+Up and Alt+Down scroll the page while the cursor stays on the same line number.

Configure > Preferences > Keyboard > Cursor has some things that might help, but I'm thinking a third-party macro is required to do exactly what you want....
by CyberSlug
Fri Mar 26, 2004 8:33 pm
Forum: General
Topic: Run from Flash/USB drive?
Replies: 1
Views: 850

TextPad stores its settings in the Windows registry, so it's hard to do what you want.

I'd recommend ...., since they store their settings in INI files.
by CyberSlug
Sat Mar 13, 2004 1:44 am
Forum: General
Topic: Find dialog in a macro, strange, again :roll:
Replies: 7
Views: 985

Just gave that script a quick run, it does not work.
I probably should have warned you script was untested because I don't use TextPad keystroke compatibility and "Changing the emulation [would kill] all custom key assignments."

The AutoIt help file (AutoIt.chm) is a really good place to start ...
by CyberSlug
Thu Mar 11, 2004 8:51 pm
Forum: General
Topic: Find dialog in a macro, strange, again :roll:
Replies: 7
Views: 985

Might try AutoIt

Code: Select all

; AutoIt v3.0.100 sample script
Send("{Home}+{End}^c")
Send("^{Tab}^{Home}")
Send("{F5}")
WinWaitActive("Find")
Send("^v")
Send("!m{Esc}")
Send("^{Tab}{Home}{Down}")
by CyberSlug
Fri Mar 05, 2004 9:23 pm
Forum: General
Topic: HotKeys for Tools stopped working
Replies: 4
Views: 418

Do you have any hotkey programs that might be setting a global Ctrl+1 hotkey?

You might try reassigning Ctrl+Shift+1 or Alt+Ctrl+1 to see if those work.
by CyberSlug
Tue Feb 24, 2004 7:31 pm
Forum: General
Topic: AutoIt Context Sensitive Help
Replies: 2
Views: 399

I was really confused, too, when I ran the installer a few weeks ago.
For me, the file installed to c:\windows\keyHH.exe

By the way, keyHH might not be needed. Trids, who is a memeber of both TextPad's and AutoIt's forums, posted the keyHH info for use with an older version of TextPad. Trids said ...
by CyberSlug
Mon Feb 23, 2004 10:13 pm
Forum: General
Topic: Can my SYNTAX DEFINITION file hilight the following . . .?
Replies: 3
Views: 699

The bad news:

SyntaxStart= and SyntaxEnd= are only useful for HTML files, sorry.
SingleCommentCol = and SingleCommentColAlt = are only useful in conjunction with the other strings, so they are also out.
StringStart=, StringEnd=, CharStart=, CharEnd=, StringAlt= do not help either. They can only ...
by CyberSlug
Mon Feb 23, 2004 9:50 pm
Forum: General
Topic: Blank line
Replies: 11
Views: 1638

i guess i got it running, but when autoit sees a "()" gives an error, saying cant parse the file!
can you hlp pls?
1) Make sure you have the lastest AutoIt version
2) Copy the code exactly and save it with the file extension .au3
3) Make sure TextPad is running
4) Double click the .au3 file, and ...