topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Thursday November 27, 2025, 2:01 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

Recent Posts

Pages: prev1 ... 177 178 179 180 181 [182] 183 184 185 186 187 ... 222next
4526
N.A.N.Y. 2010 / Re: NANY 2010 Release: Anuran
« Last post by skwire on January 28, 2010, 12:13 AM »
I tried it today and it works fine on my Win 2k PC at work (although the systray icons look slightly different). Now I have it at home and at work!

Great to hear; thanks for the report.  You can apply this patch on your 2k system to get them looking more similar:

http://www.dr-hoiby..../TrayIconIn256Color/
4527
N.A.N.Y. 2009 / Re: NANY 2009 Release: Trout (audio player)
« Last post by skwire on January 26, 2010, 12:02 AM »
Thanks, it works.  I forgot to mention that Trout is a *great* player.
There is something missing though: the total duration of all files in the playlist.

Thanks for the compliment and feedback.  Here you go:

v1.0.3 build 272 - 2010-01-25
    + Added playlist's total time (in hh:mm:ss format) to the statusbar.  (Thanks, mohamedm)
4528
N.A.N.Y. 2010 / Re: NANY 2010 Release: Anuran
« Last post by skwire on January 25, 2010, 11:32 PM »
Website | Download
v1.0.26 - 2010-01-25
    + Added hotkey for manual archiving.  (Thanks, M. Gumm)
    + Added a third archive method.  You can now choose manual-only archving.  (Thanks, M. Gumm)
    * AnuVu v1.0.10
        + Added a "Delete selected" option to the Edit/context menu.  This will delete the actual .anu file(s).  (Thanks, M. Gumm)
4529
N.A.N.Y. 2009 / Re: NANY 2009 Release: Trout (audio player)
« Last post by skwire on January 24, 2010, 04:52 PM »
No taller, just longer.  I was thinking the seekbar length would be double that of the volume.
4530
N.A.N.Y. 2009 / Re: NANY 2009 Release: Trout (audio player)
« Last post by skwire on January 24, 2010, 10:02 AM »
I agree that a seekbar ought to be there.  What does everybody think about me just adding a seekbar to each of the Minibars?  It would make them slightly longer, of course.
4531
Finished Programs / Re: DONE: Group files from within folders
« Last post by skwire on January 23, 2010, 03:47 PM »
Website | Download
v1.0.3 - 2010-01-23
    + Added a filtering option.  (Thanks, R. Nesselroad)
    + Added statusbar notification when the app is scanning folders.
    + Added an options to copy or move files.  (Thanks, R. Nesselroad)
    + Added a progress bar when copying/moving files.  (Thanks, R. Nesselroad)
    ! Fixed a nasty memory leak when adding folders.


2010-01-23_153551.png
4532
N.A.N.Y. 2010 / Re: NANY 2010 Release: Anuran
« Last post by skwire on January 23, 2010, 08:54 AM »
Website | Download
v1.0.25 - 2010-01-23
    ! Lots of tray icon fixes for Win 9x/ME/2k.
    * AnuVu v1.0.9
        ! Lots of icon fixes for Win 9x/ME/2k.


2legs, let me know if that seems to solve the issues for you.  Thanks.
4533
N.A.N.Y. 2010 / Re: NANY 2010 Release: Anuran
« Last post by skwire on January 23, 2010, 07:50 AM »
I busted out my Win2k install discs and am installing them in a VM as we speak.  I'll let you know if I find anything amiss.
4534
N.A.N.Y. 2010 / Re: NANY 2010 Release: Anuran
« Last post by skwire on January 23, 2010, 07:15 AM »
Yes, I checked that the folder and files are all there. I tried starting it a couple of times, and it "runs", although it never pops up by itself, and can't be configured (same error pops up when I try). I can see the space where it should be in the systray, and the context menu is active when I right-click on the vacant spot in the systray. I tried the latest version but no change. My system is Windows 2000 Pro SP 4.

Does the same error happen with the latest Anuran?  I added some code a few version back that tried to address the tray icon issue in Win2k.  Also, you say the tray menu does appear.  Does anything happen when you choose Options from the menu?
4535
Developer's Corner / Re: AHK Help
« Last post by skwire on January 22, 2010, 05:08 PM »
Great.  Also, you can use the "% " to force an expression on a line by itself.  This can be very handy when you want to use a ternary operator. 

Example:

Code: AutoIt [Select]
  1. ; First method.
  2.  
  3. If ( a < b )
  4. {
  5.     c := 1
  6. }
  7. {
  8.     c := 2
  9. }
  10.  
  11. ; One-line shorthand method to accomplish the same as above.
  12. ; This uses a forced expression and a ternary operator.
  13.  
  14. % ( a < b ) ? ( c := 1 ) : ( c := 2 )
4536
Developer's Corner / Re: AHK Help
« Last post by skwire on January 22, 2010, 04:55 PM »
I agree that it's rather confusing at first but easy (and flexible) once you get the hang of it.  Yes, the "% " combo does force an expression but only for that "comma section" of the command you're using.  In other words, each "comma section" of a command is separate from the others.  Example:

Code: AutoIt [Select]
  1. FileSelectFile, _SourceFileName, 3, % _InputDirectory, "Select the file to be converted.", "Adobe PDF (*.pdf)"
  2.             ; ^
  3.             ; |                    ^----------------^
  4.             ; |                            | Third "comma section" of the command.  Since we want to use the contents of
  5.             ; |                            | a variable, we can use either method, "% _InputDirectory" or %_InputDirectory%
  6.             ; |
  7.             ; |                 ^^
  8.             ; |                  | Second "comma section" of the command.
  9.             ; |
  10.             ; |^--------------^
  11.             ; |       | First "comma section" of the command.  No % used since we're declaring a variable name to store the outputted value.
  12.             ; |
  13.             ; |
  14.             ; | Note that comma I put in.  It doesn't NEED to be there but it's a good habit to get into.

Clear as mud now?   :D
4537
N.A.N.Y. 2010 / Re: NANY 2010 Release: Anuran
« Last post by skwire on January 22, 2010, 04:00 PM »
No worries...I've added it to my ToDo.  Thanks, as always, for the feedback.
4538
N.A.N.Y. 2010 / Re: NANY 2010 Release: Anuran
« Last post by skwire on January 22, 2010, 02:09 PM »
Currently, Anuran has to be running at the time of scheduled archive.  In other words, if your computer is off or hibernated, it won't archive.
4540
Developer's Corner / Re: AHK Help
« Last post by skwire on January 22, 2010, 11:56 AM »
Code: AutoIt [Select]
  1. FileSelectFile % _SourceFileName, 3, _InputDirectory, "Select the file to be converted.", "Adobe PDF (*.pdf)" ; Your original
  2.              ; -----------------
  3.              ; This is the NAME of the variable to STORE the output path in.
  4.              ; You don't use "%" at all for this since you're simply
  5.              ; declaring the name of the variable.
  6.  
  7. FileSelectFile % _SourceFileName, 3, _InputDirectory, "Select the file to be converted.", "Adobe PDF (*.pdf)" ; Your original
  8.                                    ; ---------------
  9.                                    ; This is where you want to use the CONTENTS of a variable so this is where
  10.                                    ; you should use "% _InputDirectory" or "%_InputDirectory%" (minus quotes).
  11.  
  12. FileSelectFile _SourceFileName, 3, % _InputDirectory, "Select the file to be converted.", "Adobe PDF (*.pdf)" ; One correct way.
  13. FileSelectFile _SourceFileName, 3, %_InputDirectory%, "Select the file to be converted.", "Adobe PDF (*.pdf)" ; Another correct way.
                                       
Does that help to explain things?
4541
So, jity2, can we call this Coding Snack completed?
4542
N.A.N.Y. 2009 / Re: NANY 2009 Release: Trout (audio player)
« Last post by skwire on January 21, 2010, 06:51 PM »
ctrl-up/ctrl-down will move a selection.
4543
N.A.N.Y. 2010 / Re: NANY 2010 Release: Anuran
« Last post by skwire on January 21, 2010, 07:58 AM »
Is this new with the latest version or has this been an ongoing thing?
4544
N.A.N.Y. 2010 / Re: NANY 2010 Release: Anuran
« Last post by skwire on January 21, 2010, 05:33 AM »
Website | Download
v1.0.24 - 2010-01-21
    * AnuVu v1.0.8
        ! Successive right-clicking the listview sometimes resulted in a 100% CPU race condition.  (Thanks, tomos)
4545
N.A.N.Y. 2009 / Re: NANY 2009 Release: Trout (audio player)
« Last post by skwire on January 21, 2010, 04:21 AM »
another thing is that it would be nice, I think, if Trout will remember the volume (for me it should be "full", never anything else).

Hmmm...it should already.  What OS are you using?
4546
N.A.N.Y. 2010 / Re: NANY 2010 Release: Anuran
« Last post by skwire on January 21, 2010, 04:19 AM »
I want to archive log daily, It's currently set to:-
Archive logs every: [1] [day(s)]
Does that archive then: 24hrs after the first entry, or at midnight (the latter doesnt seem to be the case here so I will have to wait till later to check the former*)

It will archive 24 hours after you click OK.  You would be better off using the second option where you can specify a daily time to archive.
4547
N.A.N.Y. 2010 / Re: NANY 2010 Release: Anuran
« Last post by skwire on January 21, 2010, 12:43 AM »
Website | Download
v1.0.23 - 2010-01-21
    + A real honest-to-goodness helpfile is now included with Anuran.  Many thanks
      to doctorfrog and mouser for their contributions and feedback.  Bring up the
      Options panel and choose Help, Contents from the menu.



So far so good. Thanks, skwire!

Cool...thanks for the report.
4548
N.A.N.Y. 2010 / Re: NANY 2010 Release: Anuran
« Last post by skwire on January 20, 2010, 05:33 PM »
Website | Download
v1.0.22 - 2010-01-20
    ! Trailing newlines are now stripped from notes before saving.


Give this version a shot, folks, and let me know if the "extra lines" issue is resolved.
4549
N.A.N.Y. 2010 / Re: NANY 2010 Release: Anuran
« Last post by skwire on January 20, 2010, 10:13 AM »
-
4550
Doh, I re-upped the archive without my test paths in it.  Je suis vraiment désolé.
Pages: prev1 ... 177 178 179 180 181 [182] 183 184 185 186 187 ... 222next