Search found 36 matches: commandline
Searched query: commandline
- Fri Aug 02, 2024 7:16 am
- Forum: Enhancement Suggestions
- Topic: Command line switch to execute a macro on startup
- Replies: 6
- Views: 8992
Re: Command line switch to execute a macro on startup
In the future (or on other boards) you may want to make more than one attempt, since commandline and parameter* do find posts (the asterisk finds not only "parameter" but also words starting with that, like "parameter s " - likewise searching for command* does find posts, too, but you can use the ...
- Wed Jul 02, 2014 8:52 pm
- Forum: Enhancement Suggestions
- Topic: Is there an math expression evaluation addin for TP ?
- Replies: 3
- Views: 2181
... that click "Apply". Expand tools to the left (by clicking the +). Click on what you named the tool. Change parameters to the URL/address of the commandline calculator (e.g. C:\calc.exe). Untick "Capture Output". Tick "Run Minimized". Tick "Close DOS Window On Exit". Finally click "OK". After that ...
- Fri Mar 01, 2013 9:13 pm
- Forum: General
- Topic: can I use Textpad in a dosbox commandline?
- Replies: 0
- Views: 665
can I use Textpad in a dosbox commandline?
... I've tried it, and the macros don't seem to wanna do a close command, or a skip to next file command. OR, there should be a way to do it via commandline with a batchfile like this textpad.exe -f UTF-8 -t ANSI "c:\LYRICS\morcheeba.txt" > "morcheeba-ansi.txt" textpad.exe -f UTF-8 -t ANSI "c:\LYRICS ...
- Tue Oct 16, 2012 6:09 am
- Forum: Enhancement Suggestions
- Topic: I'm feeling lucky
- Replies: 2
- Views: 832
I'm feeling lucky
A commandline option to Textpad that create a "search in files" and automaticly opens up the first match. I have a flowchart of all my functions in another program and it's possible for me to execute a program from each of my squares in the flowchart. By having a function like this I will be able to ...
- Wed May 16, 2012 11:31 am
- Forum: Enhancement Suggestions
- Topic: new command line parameter: -n: start with new workspace
- Replies: 1
- Views: 966
- Wed Apr 04, 2012 1:14 am
- Forum: General
- Topic: Segmentation Fault while using cygwin (c++)
- Replies: 1
- Views: 361
... done hardcore programming Have you hardcoded the pathing args in windows so that you can call the compiler/debugger directly from windows(cml - commandline). That's the first place I'd start. As an example... In java you have to map the javac and java as fixed pathing variables inorder to preform a ...
- Tue Aug 09, 2011 3:38 pm
- Forum: General
- Topic: Ctags and Search Results window move in Textpad
- Replies: 12
- Views: 2108
- Fri Jul 15, 2011 9:11 am
- Forum: Enhancement Suggestions
- Topic: SQL Support
- Replies: 4
- Views: 1347
You might also like to execute your SQL scripts/queries from within textpad .. if so, then see my post here
You would just need to modify it to run isql.exe .. or is it osql.exe(?) Can't remember the SQL Server commandline interface off-hand.
You would just need to modify it to run isql.exe .. or is it osql.exe(?) Can't remember the SQL Server commandline interface off-hand.
- Fri Jul 15, 2011 9:02 am
- Forum: Enhancement Suggestions
- Topic: Run Tool on Selection Only
- Replies: 7
- Views: 1876
... zip) runs your text selection as a SQLite3 script/query, it can easily be modfied to execute your selection as any other language that has a commandline interface. Eg: AutoIt3, Python, etc In fact, i do have another one which uses the same approach that runs python selections, but have not as yet ...
- Wed Feb 10, 2010 8:33 am
- Forum: General
- Topic: Multi Search-n-Replace! Possible through lists???
- Replies: 4
- Views: 956
Or you can use the commandline utility, sed from http://gnuwin32.sourceforge.net/packages/sed.htm as follows .. Save the following script as mysed.sed: s/String01/String_A/g s/String02/String_B/g s/String03/String_C/g s/String04/String_D/g s/String05/String_E/g Then run the following command at the ...
- Wed Dec 02, 2009 1:37 pm
- Forum: General
- Topic: Macro containing Find in Files
- Replies: 7
- Views: 1611
There is a very cool solution for this, which i use countless times each day. Check it out ..
http://forums.textpad.com/viewtopic.php?p=11264#11264
It uses grep, a free commandline utility .. download link is in that post. Best of all, no need for a macro
http://forums.textpad.com/viewtopic.php?p=11264#11264
It uses grep, a free commandline utility .. download link is in that post. Best of all, no need for a macro
- Wed Dec 02, 2009 8:29 am
- Forum: General
- Topic: highlighting words greater than 30 characters long
- Replies: 2
- Views: 2844
some workarounds
... out the bookmarked lines for separate inspection (Edit > Copy Other > Bookmarked lines ). You can even modify this approach with external RegExp commandline utilities such as sed and grep, in order to give you a hot-link index into the document where targets are found. More details on request 8) One ...
- Thu Aug 07, 2008 6:38 pm
- Forum: General
- Topic: Cursor position issue: opening TextPad in DOS batch
- Replies: 2
- Views: 499
This commandline issue gets weirder. In Win98, this batch file opens the file in TextPad for editing: start /w "C:\Progra~1\TextPa~1\TextPad.exe" C:\text\textfile.html When this batch file is run under XP, however, TextPad never opens -- instead, the HTML file is diplayed in my browser. Moreover, I ...
- Mon Aug 27, 2007 6:23 am
- Forum: Enhancement Suggestions
- Topic: Scripted Find-Replace (suggestion)
- Replies: 2
- Views: 462
... a set of function-calls to interface with the TP engine. However, that's a bit outside the scope of this thread, which is aimed at suggesting a commandline interface to TP's regexps. I probably shouldn't have mentioned editable macros, but it occurred to me that an editable list of keypresses might ...
- Wed Aug 22, 2007 8:23 am
- Forum: Enhancement Suggestions
- Topic: Scripted Find-Replace (suggestion)
- Replies: 2
- Views: 462
Scripted Find-Replace (suggestion)
... RE) engine. Macros are still un-editable and therefore not a viable solution. My current solution for this is to use the GnuWIN sed.exe commandline utility, which works like a dream but has the following shortcomings: The sed RE syntax is slightly different from TP's .. especially in the way ...