topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Wednesday November 26, 2025, 9:08 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

Recent Posts

Pages: prev1 ... 21 22 23 24 25 [26] 27 28 29 30 31 ... 222next
626
Finished Programs / Re: DONE: Right Click any file and create New Folder by its Name
« Last post by skwire on December 07, 2016, 07:42 AM »
Hi, bryan8, and welcome to the DonationCoder site.  :)

I right-clicked on the Files2Folder.exe application itself and run the "Troubleshoot Compatibility"  option.  It suggested "Vista", requested that I try it out.  It worked!

Thank you for the report and I'll definitely add this to my list of things to try when folks email me about F2F working on Windows 10.   :Thmbsup:

BTW, Very useful and handy application, thank you for creating it.

You're most welcome; I'm glad you find the application useful.   :D
627
N.A.N.Y. 2017 / Re: NANY 2017: Affirmator
« Last post by skwire on December 01, 2016, 04:01 PM »
Cute app and thank you for the NANY contribution!   :Thmbsup:
628
Post New Requests Here / MOVED: Key combination tally
« Last post by skwire on November 28, 2016, 11:38 PM »
629
Finished Programs / Re: DONE: Key combination tally
« Last post by skwire on November 26, 2016, 08:05 PM »
Did the script work for your purposes?  If so, I'll mark this request as done.
630
Finished Programs / Re: DONE: Key combination tally
« Last post by skwire on November 25, 2016, 07:45 PM »
Here's a quick'n'dirty AHK script to accomplish what you want.  It'll show the count in the window and the tray icon tooltip (hover the mouse cursor over the tray icon).  There's also a reset count option in the right-click menu of the tray icon.

Code: Autohotkey [Select]
  1. Menu, Tray, Add
  2. Menu, Tray, Add, Reset count, MenuHandler
  3. Gui, 1: Margin, 1, 1
  4. Gui, 1: +ToolWindow
  5. Gui, 1: +AlwaysOnTop
  6. Gui, 1: Add, Edit, w50 Center ReadOnly vedtCounter, 0
  7. Gui, 1: Show, , % " "
  8. Return
  9.  
  10.  
  11. UpdCounter:
  12. {
  13.     GuiControl, Text, edtCounter, % myCounter
  14.     Menu, Tray, Tip, % "Count: " . myCounter
  15. }
  16. Return
  17.  
  18.  
  19. MenuHandler:
  20. {
  21.     myCounter := 0
  22.     GoSub, UpdCounter
  23. }
  24. Return
  25.  
  26.  
  27. ~+Enter::
  28. {
  29.     myCounter++
  30.     GoSub, UpdCounter
  31. }
  32. Return
631
Skwire Empire / Re: Release: sChecklist
« Last post by skwire on November 15, 2016, 10:37 AM »
Just came across this beauty of a program and had a suggestion for a feature, trying to also keep it along the lines of simple yet functional. Would it be possible to have an option to copy to clipboard only the check marked items in the order they were checked?

Hi, miguel2000uk, and welcome to the DonationCoder site.  Regarding your feature request, did you mean the actual timing order in which they were checked or did you simply mean copying the checked items in the order they appear in the list?

OP will deliver...

Doh, forgot to release this.  Apologies.

Website | Download
v1.1.7 - 2016-11-15
    + Undo now works after sorting, too.  (Thanks, amaretti)

632
I wish I had a use for this because it looks cool.  Well done and thanks for sharing!   :Thmbsup:
633
Wow, that was fast! Skwire, thank you for the quick update :Thmbsup:

You're welcome.  I'm glad you find the program useful.   :Thmbsup:
634
Hi, zxhtrzdg, and welcome to the DonationCoder site.   :D

I'm surprised that it doesn't take files/folders as arguments, though.

Please check out the latest version I just uploaded:

Website | Download
v1.1.3 - 2016-11-04
    + SigcheckGUI now handles passed files and folders. (Thanks, zxhtrzdg)
    + Added "Clear unknown" to the Clear menu.
    * Changed/added some icons.
    * Verified SigcheckGUI works with sigcheck.exe v2.54.

635
Post New Requests Here / Re: Idea: Random activity program for windows
« Last post by skwire on October 28, 2016, 12:57 AM »
Somebody else might have to take a crack at this because your vision is probably best done in something like a web browser which, unfortunately, is not my strong suit. 
636
Post New Requests Here / Re: Idea: Random activity program for windows
« Last post by skwire on October 27, 2016, 04:23 PM »
Please redownload:  http://skwire.dcmemb...snacks/MooChoose.zip

With this version, you can create a text file (.txt) in the same folder as a given image and it will display up to four lines of text.  Due to limitation of the listview, please try to keep the lines short-ish.  Just play with it and you'll see what I mean.

Is this what you had in mind?
637
Post New Requests Here / Re: Idea: Random activity program for windows
« Last post by skwire on October 27, 2016, 02:08 PM »
Please give this very early proof-of-concept a try:  http://skwire.dcmemb...snacks/MooChoose.zip

Some notes:

  • Right now, it's hardcoded to look in the "images" folder to determine the paths it can take.  Future revs will allow you to choose which folder it starts from.  This way, you could easily make many different "flow paths" to choose from.  For instance, you could make one that suits a particular set of flow paths related to a game or whatever.
  • The current hardcoded path notwithstanding, the application is designed to work off an open-ended folder structure with open-ended image filenames.  You can name your folders and filenames whatever you'd like.  However, for each "choice" folder, the application will only display the first image file it finds.  It should support the following formats: jpg/jpeg, bmp, png, gif, & tiff.  Double-clicking an image brings you into that choice folder and displays the first image in any subfolders it finds.
  • If there are no subfolders, it assumes that this is the final folder and displays all images found in it.
  • I know this sounds confusing but please study the included folder structure and I think it'll become clear.  I based it off of your example so that should help.

Please let me know what you think.
638
Post New Requests Here / Re: Idea: Random activity program for windows
« Last post by skwire on October 27, 2016, 11:39 AM »
I've started preliminary work on this.
639
Post New Requests Here / Re: Clipboard to text file
« Last post by skwire on October 26, 2016, 01:25 PM »
Did you try running it with admin rights?
640
Post New Requests Here / Re: Clipboard to text file
« Last post by skwire on October 26, 2016, 01:58 AM »
It works here for me.  However, you're trying to write to a UAC-protected folder so you will have to have either have admin rights or run the executable with admin rights.  Alternately, you could write to a non-UAC-protected folder.  Also, I'd add a CRLF when writing out the clipboard contents like this:

Code: Autohotkey [Select]
  1. FileAppend, %clipboard%`r`n, ‪C:\Users\RG\Desktop\clip1.txt
641
Hi Skwire. Thanks for the welcome, and the great little script.

That fix worked! I don't know how I missed it in the scrollback. (Sorry for wasting your time!)

No time wasted so no worries.  I'm glad the program is working for you.  Which OS are you using, if you don't mind me asking?
642
Post New Requests Here / Re: IDEA: Mp3-Favoriter (in o.a. Windows Explorer)
« Last post by skwire on October 24, 2016, 03:28 PM »
Yessir...anytime you start working with a shell-type extension, or anything deeply integrated into the context menu, it's a right PITA to support across the differing Windows OSes.  So many changes from one to the next.
643
Post New Requests Here / Re: add buttons to an existing window
« Last post by skwire on October 24, 2016, 02:02 PM »
Hi, tommmmm, and welcome to the DonationCoder forums.

Also, i'm new here, this code is too complicated to understand, a simple example would be nice, just the gui and one button on notepad.

The executable version of Barnacle seems to work just fine on my Windows 7 system with a quick test of Notepad.  It was missing some icons on the toolbar but the functionality was there.  You could just use the EXE version and adjust the Notepad.ini as necessary for your needs.
644
Post New Requests Here / Re: IDEA: Mp3-Favoriter (in o.a. Windows Explorer)
« Last post by skwire on October 24, 2016, 12:54 PM »
I'm still looking into the options for this regarding FARR. And I did some browsing. Actually came across a tool that allows the marking of files. Sadly the
free version is very limited. I was hoping to find a freeware-like program: Rainbowfolders does a great job on colored tagging (but like it says, with folder).

This type of program is not easy to code and even harder to make work consistently across the various versions of Windows.  Based on the screenshots and product website, this seems to be exactly what you need.  If the free version works well enough on your system, you should consider buying the full product.
645
Hi, Rook-Alpha, and welcome to the DonationCoder site.  Please try the procedure listed here: https://www.donation....msg402714#msg402714
646
General Software Discussion / Re: Beyond Compare 20th anniversary
« Last post by skwire on October 18, 2016, 02:16 PM »
BTW, I requested and received my shirt last week.   :D
647
Finished Programs / Re: DONE: Sort images into folders based on resolution
« Last post by skwire on October 15, 2016, 10:55 PM »
Thank you so much for that little bug fix.

You're quite welcome.  :Thmbsup:  I'm glad you find the program useful.  :)


648
Finished Programs / Re: DONE: Sort images into folders based on resolution
« Last post by skwire on October 15, 2016, 07:36 PM »
Hi, pepanee, and welcome to the DonationCoder site.  Here's an update with a fix.

Website | Download
v1.0.8 - 2016-10-15
    + Added icons to the interface buttons.
    ! The "Matches/Does not match" option was not saved.  (Thanks, pepanee)
649
Skwire Empire / Re: sWeather Datetime Format ?
« Last post by skwire on October 15, 2016, 12:27 PM »

mouser yes I am interested in knowing the default date format I deleted mine by mistake is this it in your screenshot you posted ?

Yes, the default is: dddd, MMMM d, H:mm tt
650
N.A.N.Y. 2017 / Re: N.A.N.Y. 2017 Announcement
« Last post by skwire on October 10, 2016, 12:56 AM »
I will be releasing at least one app and, hopefully, multiple apps.  BTW, I thought this was the eleventh NANY?   :huh:
Pages: prev1 ... 21 22 23 24 25 [26] 27 28 29 30 31 ... 222next