Search found 17 matches

by scottbass
Mon Dec 20, 2010 1:00 am
Forum: General
Topic: Add double quotes around words, add comms between words
Replies: 1
Views: 278

Add double quotes around words, add comms between words

Hi, I'm wanting to write a macro to add double quotes around words, and add commas between words. In actuality, it's just a regular expression search and replace. The purpose is to build an "IN ( )" expression in SQL. Say I have this text: AAA BBB CCC DDD EEE FFF GGG HHH III What I want to do is ...
by scottbass
Fri Oct 22, 2010 10:27 pm
Forum: General
Topic: TextPad vs. UltraEdit: arguments for TextPad
Replies: 11
Views: 2661

Thanks Britt, much appreciated.

Any more input out there? I'm not sure I have enough to convince IT to choose TextPad over UltraEdit...
by scottbass
Sun Oct 17, 2010 12:54 am
Forum: General
Topic: TextPad vs. UltraEdit: arguments for TextPad
Replies: 11
Views: 2661

P.S: After searching all forums further, I did see additional discussions on this very topic. However, since those discussions were all quite dated, I still feel this thread has relevance in comparing the current versions of both products.
by scottbass
Sat Oct 16, 2010 11:10 pm
Forum: General
Topic: TextPad vs. UltraEdit: arguments for TextPad
Replies: 11
Views: 2661

TextPad vs. UltraEdit: arguments for TextPad

Hi, First of all: 1) I hope this doesn't degrade into "religious" editor wars, which I've sometimes seen in other web forums. Hopefully not, since we're all pro-TextPad here. However, please keep comments on topic per the below. 2) I hope the moderators will let this thread remain. I could really ...
by scottbass
Mon Aug 30, 2010 11:45 am
Forum: General
Topic: Last opened workspace does not show up in workspace list
Replies: 3
Views: 350

I'd gladly use UltraEdit, but there are still some features in TextPad that UltraEdit doesn't. Little things, like always seeming to know where to position the cursor when I hit the down arrow. So, even though Helios' communication with users and overall support leaves much to be desired, I still ...
by scottbass
Thu Aug 26, 2010 11:34 pm
Forum: General
Topic: Last opened workspace does not show up in workspace list
Replies: 3
Views: 350

So does Helios actually monitor these forums, and provide answers to legitimate questions? According to http://www.textpad.com/support/, these forums are the first avenue for support. Since Helios (or end users) have not replied to my post, I've submitted this issue via the Textpad feedback form (#3 ...
by scottbass
Thu Aug 19, 2010 12:26 am
Forum: General
Topic: Last opened workspace does not show up in workspace list
Replies: 3
Views: 350

Last opened workspace does not show up in workspace list

Hi, TextPad 5.3.1... I've configured TextPad to display the last 16 workspaces. The list is full with 16 previously opened workspaces. When I do File --> Workspace, the list does not show my last (several) workspaces, and I have to go hunting for it. Shouldn't TextPad recycle the 16 workspaces ...
by scottbass
Sat Apr 03, 2010 2:14 am
Forum: General
Topic: Can I bind a tool to a specific toolbar icon?
Replies: 3
Views: 449

Thanks AC, that's exactly what I wanted. I never would have thought to further right click on the tool bar icons while the customize window is open.
by scottbass
Mon Mar 29, 2010 10:14 am
Forum: General
Topic: Can I bind a tool to a specific toolbar icon?
Replies: 3
Views: 449

Re: Can I bind a tool to a specific toolbar icon?

Hi, I have two tools defined, say Foo and Bar. I have the Tools toolbar displayed, so I have 16 "hammers" on my toolbars. Currently Foo is bound to Hammer 1, and Bar is bound to Hammer 2. Is there a way to specify which toolbar icon ("hammer number") to which each tool is bound? Reason: depending ...
by scottbass
Thu Mar 25, 2010 3:09 am
Forum: General
Topic: Can I bind a tool to a specific toolbar icon?
Replies: 3
Views: 449

Can I bind a tool to a specific toolbar icon?

Hi, I have two tools defined, say Foo and Bar. I have the Tools toolbar displayed, so I have 16 "hammers" on my toolbars. Currently Foo is bound to Hammer 1, and Bar is bound to Hammer 2. Is there a way to specify which toolbar icon ("hammer number") to which each tool is bound? Reason: depending on ...
by scottbass
Tue Mar 16, 2010 10:28 pm
Forum: General
Topic: Updating program header with current filename
Replies: 1
Views: 708

Updating program header with current filename

Hi, We have program headers in the following format: /*==================================================================== Study Number : XXXX Program Name : xxxx Purpose : Some comment about the program's purpose SAS Version : SAS 9.1.3 Input Data : Some comment Output Data : More comment Macros ...
by scottbass
Tue Mar 16, 2010 9:49 pm
Forum: General
Topic: Can English and Japanese versions be installed on same PC?
Replies: 1
Views: 248

Can English and Japanese versions be installed on same PC?

Hi, I do the vast bulk of my work in English. However, I've got some data in an application (SAS) which is in Japanese. I run SAS as a tool configured in Textpad. The resultant output file (text) is encoded in Japanese for a few columns. (I'm using Textpad as my IDE, editing programs and reading ...
by scottbass
Sun Mar 14, 2010 6:13 pm
Forum: General
Topic: Stripping leading/trailing spaces, keep embedded spaces
Replies: 4
Views: 560

Wow Ben, you're good :) Thus the 1484 posts!

Yeah, my "code" document class converts tabs to spaces. But not the default document class, which is where I was doing my testing.

Thanks for the help, much appreciated.
by scottbass
Sun Mar 14, 2010 9:49 am
Forum: General
Topic: Stripping leading/trailing spaces, keep embedded spaces
Replies: 4
Views: 560

Hi, with my sample text This is a test $ This is a test$ This is a test $ This worked for the first two lines, but not the third. Here is the results: "This is a test" "This is a test" " This is a test" I also tried ^( *)(.*[^ ])( *)$ replaced with "\2", same results. Any idea if an upgrade to the ...
by scottbass
Sat Mar 13, 2010 11:50 pm
Forum: General
Topic: Stripping leading/trailing spaces, keep embedded spaces
Replies: 4
Views: 560

Stripping leading/trailing spaces, keep embedded spaces

Hi, I need to replace text as follows: This is a test$ Another test$ Still Another Test $ To "This is a test" "Another test" "Still Another Test" IOW, I need to strip leading and trailing spaces, retain embedded spaces, and add double quotes to the text. I've got an application called RegexBuddy ...