Search found 7 matches

by hattonpa
Thu Dec 20, 2012 11:20 pm
Forum: Coding Questions
Topic: Using QSE libraries for embedded AWK?
Replies: 0
Views: 590

Using QSE libraries for embedded AWK?

Hello,
Because of the abundant code examples and very helpful expert answers provided by the PureBasic community, since 2002 I've been able to create a number of useful applications to simplify tasks both at work and at home. I love PureBasic! I've always been able to find what I needed without ...
by hattonpa
Fri Jan 14, 2005 7:00 pm
Forum: Coding Questions
Topic: SetWindowLong_ not disabling Ctrl+V in EditorGadget?
Replies: 4
Views: 1267

Thanks again, Sparkie.
by hattonpa
Fri Jan 14, 2005 4:31 am
Forum: Coding Questions
Topic: SetWindowLong_ not disabling Ctrl+V in EditorGadget?
Replies: 4
Views: 1267

RE: SetWindowLong_ not disabling Ctrl+V in EditorGadget?

Thanks, Sparkie. This code will work great for me.

Any observations on why, after using SetWindowLong_, Ctrl+V pasting is not disabled with an EditorGadget, while it is disabled with a StringGadget? :?:
by hattonpa
Thu Jan 13, 2005 9:27 pm
Forum: Coding Questions
Topic: SetWindowLong_ not disabling Ctrl+V in EditorGadget?
Replies: 4
Views: 1267

SetWindowLong_ not disabling Ctrl+V in EditorGadget?

Hi,

I've only been using PureBasic for a few weeks and have been loving it. I have wanted to learn more about the Windows API for a long time, and it's been an unexpected bonus to find so much Win API help in the PB forums, in addition to PB help.

My question...
I've tried to implement a modified ...
by hattonpa
Thu Dec 16, 2004 4:45 am
Forum: Feature Requests and Wishlists
Topic: [Implemented] RegExp
Replies: 15
Views: 5155

Er, let me try that PBRegExpEx again! "(\u|\l)+" :roll:

Paul H.
by hattonpa
Thu Dec 16, 2004 4:41 am
Forum: Feature Requests and Wishlists
Topic: [Implemented] RegExp
Replies: 15
Views: 5155

Just wanted to correct my previous statement that with PBRegExpEx there is 'no... case-insensitive functionality'. There is, in fact, control over case sensitivity when searching with the meta characters \u (upper case) and \l (lower case). Guess I hadn't read the Help file carefully enough ...
by hattonpa
Thu Dec 09, 2004 12:09 am
Forum: Feature Requests and Wishlists
Topic: [Implemented] RegExp
Replies: 15
Views: 5155

Yes, regular expressions please! Also, STDIN/STDOUT please!

The PBRegExpEx lib by FloHimself is a great help. But I had to work for a while to get my head around the syntax and build my own procedures to make its implementation a little easier for me. It reminds me somewhat of PCRE, which I used ...