topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Tuesday March 19, 2024, 3:45 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Last post Author Topic: Clipboard Help+Spell - Top Priority Requests for 2011  (Read 42614 times)

IainB

  • Supporting Member
  • Joined in 2008
  • **
  • Posts: 7,540
  • @Slartibartfarst
    • View Profile
    • Read more about this member.
    • Donate to Member
Re: Clipboard Help+Spell - Top Priority Requests for 2011
« Reply #50 on: April 25, 2011, 04:48 PM »
@mouser: Oh! Thankyou! I had missed that new feature. Sorry for not paying attention!    :(

mouser

  • First Author
  • Administrator
  • Joined in 2005
  • *****
  • Posts: 40,896
    • View Profile
    • Mouser's Software Zone on DonationCoder.com
    • Read more about this member.
    • Donate to Member
Re: Clipboard Help+Spell - Top Priority Requests for 2011
« Reply #51 on: April 25, 2011, 04:57 PM »
It's brand new and i wasn't sure it if worked well enough to enable it by default so it's not surprising that it's not a very well known feature.

sosimple

  • Supporting Member
  • Joined in 2008
  • **
  • Posts: 25
    • View Profile
    • Donate to Member
Re: Clipboard Help+Spell - Top Priority Requests for 2011
« Reply #52 on: May 06, 2011, 11:17 AM »
Results:
  • All clips with URLs were filtered OK using the rule: (Lower(ClipText) LIKE '%http:%') OR (Lower(ClipText) LIKE '%www.%') OR (Lower(ClipText) LIKE '%ftp:%')
  • All clips with "the" in the text filtered OK using the rule: (Lower(ClipText) LIKE '%the%')
  • Text filtering failed using a rule with an upper case character as the first character in the filter string- e.g., (Lower(ClipText) LIKE '%The%') - so it looks as though the syntax is upper-case-averse.   :tellme:  (?)

Iain,

This is not actually a "Failure" of the software but actually the behavior of the "Filter-Code" that was specified.

The SQL "Filter-Code" you have specified: (Lower(ClipText) LIKE '%The%') means to:
1) look at a copy of the text of each clip
2) convert the copy of the clip text to lower case with "Lower()"
3) take action based on match (or not) to your text "The" which contains an uppercase letter, and can never match the clip which is being viewed as all lowercase.

The original SQL "Filter-Code" by mouser that you copied from was constructed to be case insensitive. If you want to do a case sensitive compare/match, just take out the "Lower" term like:
((ClipText) LIKE '%The%') ... or perhaps: (ClipText LIKE '%The%')

Kevin

sosimple

  • Supporting Member
  • Joined in 2008
  • **
  • Posts: 25
    • View Profile
    • Donate to Member
Re: Clipboard Help+Spell - Top Priority Requests for 2011
« Reply #53 on: May 06, 2011, 11:27 AM »
Add a feature to "explode" a clip based on various delimiters (opposite of merge), so for example:

1) Clip is:
"Apples
Bananas
Oranges
Pears"
...("Apples\nBananas\nOranges\nPears")

or 2) Clip is: "Apples, Bananas, Oranges, Pears"

Then to explode a clip would make 4 new individual clips.

Delimiters could be "automatically guessed", or could be selected from a list of common delimiters, or specified during use.

Kevin

mouser

  • First Author
  • Administrator
  • Joined in 2005
  • *****
  • Posts: 40,896
    • View Profile
    • Mouser's Software Zone on DonationCoder.com
    • Read more about this member.
    • Donate to Member
Re: Clipboard Help+Spell - Top Priority Requests for 2011
« Reply #54 on: May 06, 2011, 11:31 AM »
not a bad idea.  maybe the easiest universal solution would be a function that would let you put in a regular expression, and would extract all matches as new clips.

sosimple

  • Supporting Member
  • Joined in 2008
  • **
  • Posts: 25
    • View Profile
    • Donate to Member
Re: Clipboard Help+Spell - Top Priority Requests for 2011
« Reply #55 on: May 06, 2011, 11:44 AM »
[box-off]
Just thinking out of the box a little, so perhaps these are a bit of a stretch to request these as features of CHS, but I think these features would be a great addition for debugging/programming.

(Note: When I say Copy, I mean to create as a new CHS clip, and could also consider to copy the text/image to the clipboard.)

Copy URL's of all open Windows and Tabs of the Default-Browser.

Copy URL's of all open Windows and Tabs of the Specified-Browser.

Copy Full-Path of all open Windows of Windows-Explorer.

Copy the Window-Title of all open Visible and non-Visible Windows/Applications.

Copy the Window-Handle of all open Visible and non-Visible Windows/Applications.

Copy the App-Command-Line of all open Visible and non-Visible Windows/Applications.

Copy the App-exe-path-and-filename of all open Visible and non-Visible Windows/Applications.

[/box-off]

If anyone knows of another tool that can already do some of this, please reply.

Kevin

mouser

  • First Author
  • Administrator
  • Joined in 2005
  • *****
  • Posts: 40,896
    • View Profile
    • Mouser's Software Zone on DonationCoder.com
    • Read more about this member.
    • Donate to Member
Re: Clipboard Help+Spell - Top Priority Requests for 2011
« Reply #56 on: May 06, 2011, 11:46 AM »
Those ideas sound useful but definitely sound like they would be better handled by a 3rd party tool.

rjbull

  • Charter Member
  • Joined in 2005
  • ***
  • default avatar
  • Posts: 3,199
    • View Profile
    • Donate to Member
Re: Clipboard Help+Spell - Top Priority Requests for 2011
« Reply #57 on: May 06, 2011, 02:03 PM »
I think these features would be a great addition for debugging/programming. [...]
If anyone knows of another tool that can already do some of this, please reply.

Nir Sofer's freeware tool SysExporter can do some of what you want:
SysExporter utility allows you to grab the data stored in standard list-views, tree-views, list boxes, combo boxes, text-boxes, and WebBrowser/HTML controls from almost any application running on your system, and export it to text, HTML or XML file.
Here's some examples for data that you can export with SysExporter:

    * The files list inside archive file (.zip, .rar, and so on) as displayed by WinZip or 7-Zip File Manager.
    * The files list inside a folder.
    * The event log of Windows.
    * The list of emails and contacts in Outlook Express.
    * The Registry values displayed in the right pane of the Registry Editor.
    * The data displayed by SysInternals utilities (Registry Monitor, File Monitor, Process Explorer, and others.)
    * The text inside a standard message-box of Windows.
    * The HTML inside any instance of Internet Explorer.

sosimple

  • Supporting Member
  • Joined in 2008
  • **
  • Posts: 25
    • View Profile
    • Donate to Member
Re: Clipboard Help+Spell - Top Priority Requests for 2011
« Reply #58 on: May 06, 2011, 02:13 PM »
Nir Sofer's freeware tool SysExporter can do some of what you want:

Thanks, I'll have a look at it.

Kevin

IainB

  • Supporting Member
  • Joined in 2008
  • **
  • Posts: 7,540
  • @Slartibartfarst
    • View Profile
    • Read more about this member.
    • Donate to Member
Re: Clipboard Help+Spell - Top Priority Requests for 2011
« Reply #59 on: May 06, 2011, 08:42 PM »
@sosimple: Many thanks for the explanation of the command syntax and rules.
Where could I find these commands and syntax rules documented please? - I mean for the commands and syntax as used in CHS.

allen

  • Charter Member
  • Joined in 2006
  • ***
  • Posts: 1,206
    • View Profile
    • Donate to Member
Re: Clipboard Help+Spell - Top Priority Requests for 2011
« Reply #60 on: May 06, 2011, 09:40 PM »
More advanced ignore filtering (I don't want CH+S to snag clips from Passpack)

mouser

  • First Author
  • Administrator
  • Joined in 2005
  • *****
  • Posts: 40,896
    • View Profile
    • Mouser's Software Zone on DonationCoder.com
    • Read more about this member.
    • Donate to Member
Re: Clipboard Help+Spell - Top Priority Requests for 2011
« Reply #61 on: May 06, 2011, 09:45 PM »
(I don't want CH+S to snag clips from Passpack)
you can exclude applications.

allen

  • Charter Member
  • Joined in 2006
  • ***
  • Posts: 1,206
    • View Profile
    • Donate to Member
Re: Clipboard Help+Spell - Top Priority Requests for 2011
« Reply #62 on: May 06, 2011, 10:13 PM »
Right... but I don't want to exclude my web browser entirely, I may as well not have a clipboard extender, then. I just want to ignore my browser when Passpack is in the title bar.

mouser

  • First Author
  • Administrator
  • Joined in 2005
  • *****
  • Posts: 40,896
    • View Profile
    • Mouser's Software Zone on DonationCoder.com
    • Read more about this member.
    • Donate to Member
Re: Clipboard Help+Spell - Top Priority Requests for 2011
« Reply #63 on: May 06, 2011, 10:15 PM »
I just want to ignore my browser when Passpack is in the title bar.
ah that's different; but yeah i could add that.

allen

  • Charter Member
  • Joined in 2006
  • ***
  • Posts: 1,206
    • View Profile
    • Donate to Member
Re: Clipboard Help+Spell - Top Priority Requests for 2011
« Reply #64 on: May 06, 2011, 10:25 PM »
I just want to ignore my browser when Passpack is in the title bar.
ah that's different; but yeah i could add that.

That would be fantastic.

mwang

  • Supporting Member
  • Joined in 2007
  • **
  • default avatar
  • Posts: 205
    • View Profile
    • Donate to Member
Re: Clipboard Help+Spell - Top Priority Requests for 2011
« Reply #65 on: May 26, 2011, 12:56 AM »
I got here when I was searching for a replacement for Ditto (again). I tried CH+S a long time ago (when I first joined DC, I think), but gave up as soon as I realized it didn't support unicode, despite being impressed by its feature set.

So, mouser, could you please consider addressing the issue in the near future, pretty please?

mouser

  • First Author
  • Administrator
  • Joined in 2005
  • *****
  • Posts: 40,896
    • View Profile
    • Mouser's Software Zone on DonationCoder.com
    • Read more about this member.
    • Donate to Member
Re: Clipboard Help+Spell - Top Priority Requests for 2011
« Reply #66 on: May 26, 2011, 05:12 AM »
yes i will; now that image support is added, proper unicode and richtext seem to be the next logical steps.