topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Saturday June 1, 2024, 9:29 pm
  • 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

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - kfitting [ switch to compact view ]

Pages: [1] 2next
1
Find And Run Robot / Network Files in History?
« on: July 03, 2014, 10:16 AM »
I have a few files that are kept on network drives, but I dont see these files in the history list and FARR must re-search everytime I want to launch one of these files. Is this by design?

2
Was looking for equation editors today and came across Math-O-Mir (http://gorupec.awardspace.com/mathomir.html).  Pretty impressive little program, I will be using it a lot as a mathematical note-taker.

Even if you're not into equations, the input interface is pretty intriguing.  It takes a bit to get used to but it's pretty powerful, making good use of both mouse and keyboard.

3
Clipboard Help+Spell / Request: Select Audio Source
« on: July 09, 2011, 10:17 AM »
Dont know how hard this is, if it's not worth the time, no problem. 

What I would like is be able to choose the audio source for sound output in CHS.  Right now, like most apps, CHS just uses the default audio device.  Many music players have an option allowing you to select a particular output.

My problem (in case there are other ways of solving this) is that the CHS sound is rather loud.  I can change the volume of CHS in the Win7 sound mixer, but I dont think it maintains that setting through default device changes, etc.  (have not extensively tested this)  I also would prefer the sound to always come out of my laptop speakers, not my usually connected USB DAC.  One somewhat simple solution is to edit the wav file volume... but, I figured mouser might like to learn about the windows sound driver!  ;)

Any thoughts?

4
Post New Requests Here / IDEA: Systemwide "Drag & DropZones"
« on: October 24, 2008, 02:28 PM »
I would be interested in being able to use the concept in Firefox's "Drag & DropZones" ( https://addons.mozil...S/firefox/addon/5595 ) add-in, but in any program.  It would be cool to be able to configure different macros or scripts to run depending on the zone... don't know how feasible all this would be.  Configurability would be key.  Given all the macro programs on the market, maybe this could just be a front-end...

kevin

5
Find And Run Robot / FARR and OpenOffice 2.3
« on: October 07, 2007, 11:47 AM »
Just installed OpenOffice 2.3 yesterday and noticed that while I have Calc running and focussed (haven't tried with anything else) FARR is noticeably slower to activate.  I'm running WinXP SP2 and FARR 2.00.129.  Does anyone else observe this?

Kevin

6
Find And Run Robot / Performance in New Version
« on: March 05, 2006, 07:03 PM »
Thanks a lot mouser!  The new version is much more responsive!  I'll keep testing, but as of now it is what I had hoped for!  Thanks,

Kevin

7
Developer's Corner / Interesting GUI Feature
« on: February 12, 2006, 08:35 AM »
Just saw XpAssociate over at shellcity and gave it a quick try.  It's not bad... does what it claims!  While the overall GUI is not too impressive, the tree pane is pretty cool because of the "quick filter" at the top.  Give it a try!  mouser,  I thought of your recent treks into hierarchical structures when I saw it... pretty nifty idea!

http://www.memecode.com/xpassociate.php

Kevin

8
Developer's Corner / VBA (Excel) - Natural Sort Add-In
« on: February 10, 2006, 09:01 AM »
IF you downloaded before 12PM EST (10 FEB 06) please redownload... I forgot a function!

Pros:
- Sort using natural sort order (10 comes after 9!)
- Sort on cell color
- Sort on font color
- Sort on more than 3 columns or column colors at a time
- Casse sensitive option (all sort columns or individually)
- Ascending or descending sorts on any individual column
- Keeps many cell formating features (cell color, font color, indent 
level, number format)

Cons:
- Slower than excel native sort (mainly in applying the formatting... 
sorting is actually pretty quick).
- Can't sort horizontal (I have no need to do this).
- Cell formatting has no options (unless you edit the script!)

Install:
- Download the file and change the extension from "txt" to "xla"
- Put the xla file where you can find it.
- Open Excel and go to Tools -> Add Ins.
- A GUi will appear.  Go down the list until you find "NaturalSort" and 
put a check in the box next to it.  Click ok.
- A toolbar should load with an icon and the word "sort."

Usage/Syntax:

There are three main ways to enter the sort and they depend on your current 
selection. Click the sort button on the new toolbar.
* If you have one cell selected, the script assumes you want to select the 
entire used sheet (sorting one cell would be pretty dumb!).
- An input box comes up that asks for the number of header rows.  This is 
your chance to NOT sort the rows at the top of your sheet!  If you have 4 
rows of header and your information starts on row 5, enter a 4 in the 
box.  If you have no header rows, enter a 0.  The script will check every 
column to determine the last USED column and last USED row.  These, then, 
define the selection.
- The main sort input box comes up... see below.

* If you have selected ONE row with multiple columns, you are asked for the
number of header rows as above, then the script chooses the max number
of used rows in JUST those columns.  The main sort input box comes up...
see below.

* If you have selected a region that is more than one row, the sort only 
applies to the selection and the main sort input box comes up... see below.


The Main Sort Input Box.
This is where you decide how you want things sorted.  The syntax is as 
follows:

a,b,c or A,B,C or 1,2,3 are all acceptable column designations.  Just be 
sure they are comma delimited!!  The order you put them in determines sort 
order.

@ :tells the script to ignore formatting... sorts data values ONLY!  This 
symbol can go anywhere in the input string (beginning or end make sense, 
but are not necessary).

^ :tells the script to sort Descending (ascending is default).  If this 
symbol is BEFORE the ENTIRE string (ie, ^a,d,f) then descending sort is 
applied to ALL sort columns.  If the symbol is placed AFTER an INDIVIDUAL 
column (ie, a,d^,f,i^), it applies ONLY to that column.

% :tells the script to NOT sort case sensitively.  It follows the same
conventions as ^ above with regard to all sort columns vs individual
sort columns.

(a) :tells the script to sort on the cell color in column "a."

{a} :tells the script to sort on the font color in column "a."

Some Syntax examples:

@k,(a)^,b
Ignore formatting, sort on k, descending sort on a's cell color, sort on b

(a),{a},%a
Sort on a's cell color, a's font color, and a's case-insensitive value

a,b,c,d,e,f,g,h,i,j
Sort on a bunch of columns!  Don't know why you'd do this... but maybe you 
have a lot of data!


Support:
I will NOT be very supportive!  If a bug is found I will try to correct 
it.  If functionality is requested that I think I would find useful I may 
try to implement it.  Bottom line is that this script is written for me by 
me and I have "real work" (hardware engineering) to do and I make it a 
point not to code at home!  Feel free to modify things on your own, or ask 
for how I implemented things.  I will try to help there.

Credit:
I must give credit to one site in particular since I used their VBA 
quicksort routine... then modified it to work with my natural sort 
algorithm.  Specifics are changed but the overall structure is the same.   
Go to http://www.vba-programmer.com/ and do a search for quicksort.  To 
sort on more than 4 columns I iteratively call the Two Column Quicksort (I 
ALWAYS have one column numbered in the current sort order so I don't lose 
current order (ie, if I sort on the same columns back-to-back I get the 
same sort... without this numbering scheme I get a different sort 
everytime due to how the quicksort works.).).

And the Add-In...


9
Clipboard Help+Spell / Bug? - Blank GUI
« on: December 11, 2005, 04:12 PM »
I copied the CHS exe's over the old version and now when I double click on the tray icon I get a blank gui... just the menu bar shows.  Not sure if this is something I did or if it's a bug, though. 

Kevin

10
Living Room / Exciting news at the Keynote forum...
« on: November 21, 2005, 10:41 AM »
Check out this thread.  Looks promising, but it still could just be vaporware.  Also, have to see how commercialization goes.

http://www.tranglos..../viewtopic.php?t=444

Kevin

11
Clipboard Help+Spell / Re: VERSION v1.05.01 - November 15, 2005
« on: November 15, 2005, 01:06 PM »
Cool, I'll give it a try when I get home... the Government has decided to ban downloading zip and exe files.  Well, some places it works.  Cant figure out why.  Oh well!  Thanks for the new version though,

Kevin

12
Living Room / SQLite and AutoIt
« on: November 13, 2005, 02:08 PM »
In my neverending battle to find a program to store data, I decided to learn about databases.  Last week I found a person on the AutoIt forums who showed how to use AutoIt as a frontend for SQLite.  So this past week I sat down and got a cobbled together script that accesses SQLite.  I don't know if anyone else will find this useful, but here it is.  Some Instructions (it would help if you already know a little about databases or at least want to learn):

- download the file and extract all files to a directory
- Register the sqlite3.dll (this is actually the LiteX com wrapper for SQLite http://republika.pl/roed/litex/) by double clicking on the reg_litex.bat)
- Double click on Database.exe... the program should open.

- Click the open/create database button and open sqlite.db in the extracted folder... the database should load and show items in the tree.  Click on the items (tables) and you should see their contents pop up into the listview.  Click the plus sign to expand the tree items and you can see all columns within a table.
- Feel free to play around.  I have the GUI mostly laid out, but not all functions are working yet.  Functions that do not work have their buttons grayed out. 

Basically, this program does three things as evidenced by the three tabs.  The tab that pops up first (Raw View) is meant to help visualize the database structure and allow you to easily create and manipulate a database.  I coded this so I could easily generate test databases while learning and to learn SQL.  The third tab (also operational) allows you to enter in raw SQL and see the results.  If you do a command that changes the database you will have to go back to the raw view, refresh the database and look to see if the table was modified.  The first tab will pull everything together.  I hope to be able to make a database GUI something like what mouser has in CHS only able to be customized.  Plugins will allow you to make different kinds of databases with different queries etc.  I still don't know enough to get this part working... so I finish the other sections!  But it's coming. 

After CHS gets it's updates, it may do a lot of what this can do.  But I got a lot of experience and now know SQL very slightly!  Enjoy.  Feel free to post comments or bugs.  The exe worked for me but it may crash for others.  Also, there are sure to be bugs within the code.

Here is the AutoIt discussion... its a tad long, but I'm blink314.  http://www.autoitscr...mp;gopid=123937&

Kevin

13
Living Room / Visual 2005 Express for FREE
« on: November 08, 2005, 04:42 PM »
Saw this earlier today... wouldn't mind hearing people's thoughts on it.

http://forums.micros...=126606&SiteID=1

you can download the full ISO's here:
http://msdn.microsof...ess/support/install/

Kevin

14
Living Room / RSS question...
« on: October 26, 2005, 12:47 PM »
I am just trying out RSS for the first time and decided to try the forums here as one of my first tests.  One question: is there any way to put the forum the message is from in the message subject?  It's neat to get all the posts and just be able to sift through them, but it's hard to tell what the message is referencing.  I dont know how much you can customize RSS (I have no idea how it works just yet!), but this would make the forum RSS feed more usable.

Kevin

15
Clipboard Help+Spell / CHS - Program Goals
« on: October 24, 2005, 09:05 AM »
In another thread, mouser mentioned that discussion needed to happen regarding CHS' interface.  As I was thinking about this, I realized that the interface would be highly contingent on "what" CHS is supposed to do.  Therefore, before discussion on interface can begin, the overall function of CHS should be defined.

As far as I'm aware (correct me if I'm wrong, mouser) CHS is going to be branching out into more of a shell program containing different plugins.  Each plugin will use a database to perform a specific job.  Currently, CHS supports a clipboard plugin, where every bit of text from the clipboard is kept in a database.  Another idea for a plugin would be a "notes manager" or "miscillaneous information organizer" (ahhhh spelling!).  The reason for the plugin system is so users could determine how in-dpeth they wanted to get: if they just need a clipboard tool, they can have it.  If they want a notes manager they can have it.  If they think of something entirely new, they can have it (maybe). 

In thinking about this concept, there are things that any program supporting these two functions should have:

1. Filtered database  - for fast searching/organization (sort of like what is currently implemented for CHS).  I imagine a database backend where all data is stored.  Treeviews, table views, and text views would be a way to organize that data.  Further I think it would be cool (though difficult) to allow limited mind mapping type support.  Basically, CHS stores data in a file and allows users to organize it the way they want!
2. Format support - plain text for those who want it, RTF for those who what formatting, and HTML and XML would be nice.  This would also allow people to store information in table form, hyperlinks, etc.  (Keynote was going to use TRichView (www.trichview.com) as it's richedit component... just to give an idea of what is implied here).
3. Import/Export - This is a huge deal to me... data is no good if the program you are using cannot get it out to be used by other programs!  Once again, plain text, RTF, HTML, XML, XLS, LOL, BRB, ETC would be nice.
4. Scripting support - allows people to automate routine tasks!


These are things I think are important.  I have no idea how easy they are to implement and there are probably some things I have overlooked.  This topic is for the discussion of general ideas for CHS.  Suggestions should be applicable to multiple plugin ideas (particularly to the Clipboard and notes ones mentioned above), or can be other plugin ideas.  Basically, what should CHS do and what big pieces are required to get the job done.  Once this has been discussed, interface design can be discussed. 

Finally, since mouser is the one doing the coding, any feature suggested by anyone else is not guaranteed!  I will try to keep this post updated with new requests so you dont have to scroll down to see new ones all the time (this also is not gauranteed!!).  So let's discuss!

Kevin

16
General Software Discussion / Keynote Closes...
« on: October 23, 2005, 07:47 PM »
marek, the author of Keynote, an information organizer, has announced he is done coding projects (http://www.tranglos..../viewtopic.php?t=419).  This is something I had kind of anticipated, though it still stinks because Keynote was such a great program (at least I never tired of advertising for it!).  I still haven't found a decent replacement for Keynote though I've tried many of them.  One idea that looks promising is neomem (www.neomem.org - go to the blog it's got the most recent news). 

Just to be a pain in the butt: mouser, I am now behind CHS turning into a notes manager ;) , heh heh.  But, you should take a look at neomem's site.  Perhaps a collaboration would work... and now, I turn and run!  Just wanted to make a post to let people know that Keynote has ended.

Kevin

17
Find And Run Robot / 1.07.21???
« on: October 19, 2005, 11:24 AM »
Hey mouser, looked at the thread for the latest version... and then looked at my about dialog.  I have 1.07.21.  Is 1.07.20 really the latest version?

Kevin

Dang it... just noticed nontroppo has posted this in another thread. Sorry, forget this.

18
Unfinished Requests / Idea - Weighted Audio Inputs
« on: October 11, 2005, 08:36 AM »
Talking with a friend here at work and he mentioned he would like to be able to set a hierarchy for his audio inputs on his soundcard.  The real life application here is he often plays video (wav input) and listens to his police scanner (line in) at the same time.  Trouble is that when the Police Scanner "interrupts," the video doesnt get quiet so you can hear the scanner. 

The application should be able to mute or set the lower priority input to a lower level.  It should also be able to trigger on dead silence or an adjustable level.  A nice GUI would be awesome as well! 

Any takers, questions, or suggestions?

Kevin

19
Find And Run Robot / Feature Request - Mind Reading
« on: October 10, 2005, 07:38 PM »
Could you make FindRun launch the program I meant to launch and not the one I pressed the hotkey for??  I've had multiple cases today where I just pushed the wrong key... it's rather annoying!  Thanks ;)

Kevin

20
Find And Run Robot / Feature - Folder Search
« on: October 07, 2005, 03:38 PM »
Hey mouser, with regard to the latest plethora of updates to FindRun, could I throw in a vote for being able to choose which folders and which file extension a search will cover?  We have talked about this before (I orginally got it confused with alias' or groups... the terminology still escapes me!) and just figured I'd bring it up again.  It's one feature I am highly looking forward to!  If it will have to wait... I'll wait!

Kevin

21
Clipboard Help+Spell / Feature Request
« on: September 30, 2005, 07:58 AM »
I'm in the process of doing a bunch of copy/pasting from the internet into my hierarchical-tree-note program of choice (Keynote ;) ) and I was wondering if you could make the text pane more editor-like.  Currently you can do a fair amount of text editing in CHS's window, but when you bring in portions of webpages from the internet, they dont copy well and you have to go back through and change the formating.  I know, you can do this in the app you are pasting to, but CHS already has some cool batch features like removing linebreaks, whitespace, extra characters, etc.  It seems kind of silly to use two different apps to collect data.  In particular, the editing window graphic bug gets annoying (the one I mentioned earlier that caused garbled text after scrolling or heavy editing). 

I know, I know, this points in favor of making CHS into a full fledged note program.... and I agree.  And, since I've been looking around at the relative lack of progress on these apps maybe another one wouldnt be a bad idea!  There are many out there but they all lack at least one major component.  (Major component being, but not limited to, the following: intermediate text editing, table support, picture support, and perhaps the most often overlooked, full-featured import/export (if I can put the data in, I will more than likely want to pull it out again!). 

So, just making this request for whenever you ramp up development on CHS again!

Kevin

22
Clipboard Help+Spell / New Program Found...
« on: September 23, 2005, 07:14 PM »
Well, it's new to me!  mouser, this appears to be very similar to what you and I have been talking about regarding CHS... no, it doesn't do mind-mapping ;)  But, it looks like a seriously well thought out program and has an excellantly clean interface.  Check it out here:

http://www.neomem.org/neomem.htm

Don't just look at the screenshot, it's got a ton of features.

Kevin

23
Clipboard Help+Spell / Plugin idea
« on: August 28, 2005, 12:29 PM »
One cool idea for a plugin for CHS would be a removable media database.  There are programs that recreate a cdrom's directory structure so you dont have to put the cd in the drive to find out what files are on it.  Since CHS already has a database, it wouldnt take a lot of effort (said the layman looking from the outside, inward) to have CHS read a cd directory and store it in a database.  Just a thought!

In other news (or questions), how is CHS coming along mouser?  I know you're working hard on other programs, getting the liscence thingy working, and updating the site, so please dont take this question as an implication that you're slacking!  To the contrary, perhaps you need a break!  Just wondering how plans are shaping up for CHS and it's inclusion of a more generic database function. 

Kevin

24
Cheat Sheeter / Similar Program
« on: August 24, 2005, 11:04 AM »
Dont know if development is still going on here, but this is an interesting concept for a similar program:

http://www.qliner.com/hotkeys/

Kevin

25
Finished Programs / DONE - Memory utilization
« on: August 22, 2005, 06:16 AM »
Got a quick request for an app I could use at work.  Basically I need to keep track of an apps memory usage.  I was going to write something in AutoIt, but couldnt find any way to determine the memory usage of a specific process.  I turned to AutoHotKey, but that had nothing as well.  Asked in the AutoIt forums, but couldnt get an answer.  What I would love is for someone to give instructions for how to find a process' memory usage so I could write my own script.... but, if that is impossible, if someone could code a quick app for me that would be great. 

Requirements:
- Choose ONE executable to track
- Set an alarm so if the exe goes above a certain threshold a tooltip or messagebox or tray balloon would pop up with userdefinable text (including the amount of memory)


I dont want a bunch of features.... just a quick and dirty app!  THanks,

Kevin

Pages: [1] 2next