Welcome Guest.   Make a donation to an author on the site May 23, 2013, 07:44:54 AM  *

Please login or register.
Or did you miss your validation email?


Login with username and password (forgot your password?)
Why not become a lifetime supporting member of the site with a one-time donation of any amount? Your donation entitles you to a ton of additional benefits, including access to exclusive discounts and downloads, the ability to enter monthly free software drawings, and a single non-expiring license key for all of our programs.


You must sign up here before you can post and access some areas of the site. Registration is totally free and confidential.
 
The N.A.N.Y. Challenge 2010! Download 24 custom programs!
   
  Forum Home Thread Marks Chat! Downloads Search Login Register  
  Show Posts
      View this member's profile 
      donate to someone Donate to this member 
Pages: Prev 1 2 3 4 [5] 6 7 8 9 10 ... 147 Next
101  DonationCoder.com Software / Post New Requests Here / Re: IDEA: small plugin-toolbar (or similar) audio player in Windows Explorer on: March 14, 2013, 06:22:59 PM
You are probably looking for a modern version of CustomBar.
Sadly, it was not really updated for the new millennium...

$20 http://www.custombar.net/
http://www.donationcoder....um/index.php?topic=6499.0
 (see attachment in previous post)

I could easily code a small, independent bar that could control Winamp or any audio player that incorporates the Winamp API.  Trout, AIMP, & Foobar (with a plugin) come to mind.
102  DonationCoder.com Software / Post New Requests Here / Re: IDEA: small plugin-toolbar (or similar) audio player in Windows Explorer on: March 14, 2013, 06:20:29 PM
Welcome to the DonationCoder site, goldencut.

ANY feedback would be nice at this point - it's too complicated, it's impossible, it's been done already, it's stupid... anything...

While I like your idea, what you're asking for is a lot more complicated than you might think.

First of all, anything you write is, technically, outside of Windows Explorer.  This mean that a developer will have to consider all the different versions of Windows Explorer (2000/XP/Vista/W7/W8 + 32/64-bit of each) along with all of their different capabilities, limitations and idiosyncrasies. Furthermore, the shell context menu has its own set of capabilities, limitations and idiosyncrasies to deal with across the different Windows versions as well.  It's a real mess.  

Let's say you decide to do this anyway.  Now you have to deal with the fact that your interface is separate from your playback engine which, in and of itself, isn't a bad thing.  However, in this case, you don't have access to the innards of the interface so you're forced to use an intermediary, i.e. a service, API calls, window messages, etc.  This can be very limiting and very frustrating to work with.  For what it's worth, I've written an audio player called Trout that some folks here at DC have come to like.  I could not imagine trying to write such a player without designing, and having full access to the user interface code, myself.

I hope this made some semblance of sense.  =]
103  Main Area and Open Discussion / General Software Discussion / Re: Mouse Tutor App? on: March 13, 2013, 03:37:34 PM
Perhaps this will work for you?

http://www.rekenwonder.com/mousetrainer.htm
104  DonationCoder.com Software / Post New Requests Here / MOVED: Files from Text List with Default Content on: March 13, 2013, 10:14:01 AM
This topic has been moved to Finished Programs.

http://www.donationcoder.com/forum/index.php?topic=34294.0
105  DonationCoder.com Software / Post New Requests Here / Re: IDEA: small plugin-toolbar (or similar) audio player in Windows Explorer on: March 13, 2013, 09:53:03 AM
I wanted something similar, a small toolbar to control Winamp.  Something that integrates directly into Windows Explorer or the title bar of whatever program I happen to be using...

http://web.archive.org/we.../software/WinampBar41.exe

It's old, but it still seems to work fairly well.  YMMV.
106  DonationCoder.com Software / Finished Programs / Re: IDEA: Have list of URLs, and, in Chrome, manually load one, then next, etc. on: March 12, 2013, 06:54:52 PM
Interesting.. but you could also just do a shell exec to open a url and it will open in default browser, OR simply invokle an explicit browser exe and pass the url to it on commandline.

Sure, but then you run the risk of multiple windows/tabs (something the OP didn't want).
107  DonationCoder.com Software / Finished Programs / Re: IDEA: Have list of URLs, and, in Chrome, manually load one, then next, etc. on: March 12, 2013, 06:40:20 PM
No, it's not like what you think.  In fact, it's rather inelegant.  Here's a commented snippet that should explain things:

Formatted for Autohotkey with the GeSHI Syntax Highlighter [copy or print]
  1. myURL := "myURLsArray" . _URLnum ; Dereference the variable.
  2. SendInput, ^l                    ; Send a Ctrl+L hotkey to focus the address bar.  Works for FF, IE, and Chrome.
  3. SendInput, % %myURL%             ; Send the actual URL text.
  4. Sleep, 750                       ; Small wait time to allow for long(er) URLs.
  5. SendInput, {ENTER}               ; Send and Enter keystroke to load the page.

Make more sense now?  A hack, pretty much.   embarassed
108  DonationCoder.com Software / Finished Programs / Re: IDEA: Have list of URLs, and, in Chrome, manually load one, then next, etc. on: March 12, 2013, 05:33:23 PM
Thanks, Skwire, for the AHK script!

You're welcome.  Is that script good enough for your purposes?  If so, I'll mark this thread as done.

109  DonationCoder.com Software / Finished Programs / Re: DONE: Files from Text List with Default Content on: March 12, 2013, 04:17:07 PM
Give Chris' application a run-through and see if it satisfies your initial request.   smiley
110  DonationCoder.com Software / Finished Programs / Re: DONE: Files from Text List with Default Content on: March 12, 2013, 04:01:30 PM
So, basically, you want a bunch of exact duplicate files with differing filenames, whose filenames are sourced from a list that you provide?  If so, this is a piece of cake with a small AutoHotkey script.  Are you familiar with AutoHotkey at all?
111  DonationCoder.com Software / Finished Programs / Re: DONE: Files from Text List with Default Content on: March 12, 2013, 03:34:29 PM
How large is the block of content?
112  DonationCoder.com Software / Finished Programs / Re: IDEA: Have list of URLs, and, in Chrome, manually load one, then next, etc. on: March 12, 2013, 01:28:15 PM
Here's a basic AHK example that seems to work in Firefox, IE, and Chrome.  Run it, focus your browser, and use Ctrl+Right and Ctrl+Left to cycle through the list.  Of course, change the URL list to suit.

Formatted for Autohotkey with the GeSHI Syntax Highlighter [copy or print]
  1. myURLs =
  2. (
  3. http://www.donationcoder.com
  4. http://www.filehippo.com
  5. http://www.arstechnica.com
  6. )
  7.  
  8.  
  9. StringSplit, myURLsArray, myURLs, `n
  10.  
  11.  
  12. ^Right::
  13. {
  14.    myCounter++
  15.    % ( myCounter > myURLsArray0 ) ? ( myCounter := 1 ) : ()
  16.    URL_GoTo( myCounter )
  17. }
  18.  
  19.  
  20. ^Left::
  21. {
  22.    myCounter--
  23.    % ( myCounter < 1 ) ? ( myCounter := myURLsArray0 ) : ()
  24.    URL_GoTo( myCounter )    
  25. }
  26.  
  27.  
  28. URL_GoTo( _URLnum )
  29. {
  30.    myURL := "myURLsArray" . _URLnum
  31.    SendInput, ^l
  32.    Sleep, 300
  33.    SendInput, % %myURL%
  34.    Sleep, 750
  35.    SendInput, {ENTER}
  36. }
113  DonationCoder.com Software / Finished Programs / Re: File2Folder problem on: March 10, 2013, 07:07:29 PM
You are not a jerk. I am just a NOOB. Either way, I somehow got it working and am extremely pleased with the results

Great to hear.  Enjoy your stay here at DonationCoder.   smiley
114  DonationCoder.com Software / Finished Programs / Re: File2Folder problem on: March 10, 2013, 06:00:15 PM
Hi, darylbaz, and welcome to the DonationCoder site.

At the risk of sounding like a jerk  embarassed, it means what it says; Files2Folder is unable to create the folder it needs to move your selected files into.  Is the folder UAC-protected?  Or, is it a network folder that you don't have permissions to create a folder in?  Does F2F work in other folders for you?
115  Main Area and Open Discussion / General Software Discussion / Re: tool to check if TIFF files compressed ? on: March 08, 2013, 02:00:54 PM
Website | Download
v1.0.7 - 2013-03-08
    + Added "Samples/Pixel" and "Bit Depth" columns (Thanks, Paul)
    + Added "Clear list" and "Always on Top" toolbar buttons.
    + Added "Copy" functionality to the Edit menu and Ctrl+C hotkey.  This
      allows you to copy the selected files to the clipboard for pasting
      elsewhere using a file manager.  (Thanks, Paul)
    * Changed "Bits" column name to "Bits/Sample."
    ! Fixed refresh issue when using a dropped folder.
    ! Resolution column data wasn't cleared properly.
116  Main Area and Open Discussion / General Software Discussion / Re: Outlook synching on: March 07, 2013, 06:46:12 PM
The easiest solution is going to be switching those POP account to IMAP.  Even Yahoo offer IMAP access these days.

imap.mail.yahoo.com (use SSL IMAPS on port 993)
smtp.mail.yahoo.com (use SSL SMTPS on port 465)

Trying to synch up POP accounts across multiple computers is an exercise in absolute frustration (as you've found out).
117  DonationCoder.com Software / Finished Programs / Re: DONE: Sort images into folders based on resolution on: March 06, 2013, 10:49:59 AM
Website | Download
v1.0.7 - 2013-03-06
    + Added options to the "Sort all" method which allows for sorting based
      on only width, only height, or both.  (Thanks, Aimee)
    + Added "Match/Does not match" option to the aspect ratio sort method.
    * Swapped the uppper/lower total pixels range option fields.
118  Main Area and Open Discussion / General Software Discussion / Re: upgrade to SSD on: March 05, 2013, 05:59:53 PM
XXClone should be all you need.  I have used it myself to easily clone a current Windows boot disk to another disk/SSD.
119  Main Area and Open Discussion / Living Room / Re: Ancient Seagate 2.5 GB USB 1.1 drive still functioning perfectly... on: March 04, 2013, 05:45:25 PM
And you used it for hammering the nails in your workbench, right?

Paperweight, mostly.  =]
120  DonationCoder.com Software / Post New Requests Here / Re: IDEA: Startup Software Needed on: March 04, 2013, 02:17:24 PM
I think WinPatrol might be your best option as what you're requesting is not at all trivial to code.
121  Main Area and Open Discussion / Living Room / Re: When you make your 100'th Post on: March 04, 2013, 01:35:26 PM
 Grin.  Pretty cool timing.
122  DonationCoder.com Software / Post New Requests Here / Re: IDEA: Startup Software Needed on: March 04, 2013, 12:00:02 PM
WinPatrol, perhaps?
123  Other Software / DC Gamer Club / Re: Pre-Purchase Sniper Elite: Nazi Zombie Army 4-Pack on: March 03, 2013, 04:38:18 PM
Never mind; I got it figured out.   cheesy
124  Other Software / DC Gamer Club / Re: Pre-Purchase Sniper Elite: Nazi Zombie Army 4-Pack on: March 03, 2013, 04:34:54 PM
Hmmm...I forgot about this and, now that I check, the game doesn't appear in my Steam library list.   huh
125  Main Area and Open Discussion / Living Room / Re: When is your birthday?! on: March 01, 2013, 06:00:47 PM
Mine was a week ago on February 22nd.
* skwire high fives Hally, a fellow Pisces.   cheesy  
*Not that I believe in that Zodiac crap or anything... tongue
Pages: Prev 1 2 3 4 [5] 6 7 8 9 10 ... 147 Next
DonationCoder.com | About Us
DonationCoder.com Forum | Powered by SMF
[ Page time: 0.082s | Server load: 0.23 ]