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, 3:42 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 ... 102 103 104 105 106 [107] 108 109 110 111 112 ... 222next
2651
Post New Requests Here / Re: IDEA: Simple Sensatronics Tray Tool...
« Last post by skwire on January 22, 2012, 07:57 PM »
1)  Look at current value (z)
2)  Look at previous value (y)
3)  Look at previous value (x)

I think we ought to make this default behaviour.  No need for a checkbox.  I'll just put a note in the help tab that the trend indicator will be more accurate after three polls.
2652
N.A.N.Y. 2011 / Re: NANY 2011 Release: Ten Timer
« Last post by skwire on January 22, 2012, 12:32 PM »
Website | Download
v1.0.6 - 2012-01-22
    * Changed font-based glyphs to image-based.  (Thanks, Sean)


2012-01-22_123519.png
2653
Post New Requests Here / Re: IDEA: Simple Sensatronics Tray Tool...
« Last post by skwire on January 21, 2012, 09:41 PM »
Thanks.  This was a neat one to code.
2654
Post New Requests Here / Re: IDEA: "CopySmart"
« Last post by skwire on January 21, 2012, 09:37 PM »
I uploaded another build with a taller InputBox.  Let me know if that works better on your computer.  TaoCopier

As to your other questions, yes, they're possible.  However, they're delving into what I call "subjective coding" where the choices you're making are no problem at all for a human to decide but they're really inelegant to try and code for.  Does that make sense at all?  If not, I apologise; it's sometimes hard to convey this point.   :(
2655
I would not buy from them. The text on that page is copied from vmware site, according to alexa, they have negligible traffic and the domain is registered on Bahamas.

Anyway, as I software author, I will not allow my software to be sold at permanent discount by a unknown web site and I doubt vmware will, but you can always email them.

Agreed.  I steer far clear of sites such as these.  tslim, did you notice the pricing?  Their site states the retail price is $100.00 and the discount price is $199.00 but you can buy it for $119.00.  WTF?   :huh:

2012-01-21_045510.png
2656
Post New Requests Here / Re: IDEA: "CopySmart"
« Last post by skwire on January 21, 2012, 04:15 AM »
Here you go:  TaoCopier
2657
Post New Requests Here / Re: IDEA: Simple Sensatronics Tray Tool...
« Last post by skwire on January 20, 2012, 07:06 PM »
Many thanks to LEDAdd1ct for working closely with me on this.  There are still a few bits and bobs to add but I think it's ready for a public release.  Granted, the audience for this will be limited to folks with Sensatronics sensor units and, after checking prices on their website, they are not cheap.  I think the app turned out well.  Here are some screenshots:

main.png options.png

Website | Download
v1.0.1 - 2012-01-20
    + Public release

v1.0.0 - 2012-01-19
    + Private builds.
2658
Post New Requests Here / Re: IDEA: "CopySmart"
« Last post by skwire on January 20, 2012, 03:34 PM »
Here's a quick-n-dirty AutoHotkey hotkey that should do what you want.  Copy a single file or folder to the clipboard and then press Win+V, enter the number of copies you want and it should make them.  Works with a single file or a single folder only and has some basic sanity checking built-in to check this.

Code: Autohotkey [Select]
  1. #v::
  2. {
  3.     myPath := Clipboard
  4.     ; Check for existence of multiple items.  Kick out if found.
  5.     Loop, Parse, myPath, `n, `r
  6.     {
  7.         If ( A_LoopField != "" )
  8.         {
  9.             If ( A_Index > 1 )
  10.             {
  11.                 MsgBox, 16, Error, Multiple files selected!`n`nThis hotkey is designed for use with only one file or folder selected.
  12.                 Return
  13.             }
  14.         }
  15.     }
  16.    
  17.     ; Check path for validity.
  18.     If ! FileExist( myPath )
  19.     {
  20.         MsgBox, 16, Error, Current clipboard contents either:`n1) Do not exist anymore or`n2) Are not a file/folder path
  21.         Return
  22.     }
  23.    
  24.     ; Get number of copies to make from the user.
  25.     InputBox, numCopies, Number of copies, Enter number of copies to make:, , , 110
  26.  
  27.     If ! ( ErrorLevel ) ; User did not cancel.  Proceed.
  28.     {
  29.         SplitPath, myPath, OutFileName, OutDir, OutExtension, OutNameNoExt, OutDrive
  30.         Loop, % numCopies
  31.         {
  32.             ; Check if destination file/folder exists.  If so, create a unique name for it to avoid collisions.
  33.             Loop
  34.             {
  35.                 If FileExist( OutDir . "\" . OutFileName )
  36.                 {
  37.                     OutFileName := OutNameNoExt . A_Index . ( ( InStr( FileExist( myPath ), "D" ) ) ? ( "" ) : ( "." . OutExtension ) )
  38.                 }
  39.                 Else
  40.                 {
  41.                     Break
  42.                 }
  43.             }
  44.             If ( InStr( FileExist( myPath ), "D" ) ) ; myPath is a folder.
  45.             {
  46.                 FileCopyDir, % myPath, % OutDir . "\" . OutFileName
  47.             }
  48.             Else ; myPath is a file.
  49.             {
  50.                 FileCopy, % myPath, % OutDir . "\" . OutFileName
  51.             }
  52.         }
  53.     }
  54. }
  55. Return
2659
Nice work, 4wd.  :Thmbsup: vevola, please confirm this works for you and I'll mark and move this thread to Finished Programs. 
2660
That is an awesome read.  Too good.   ;)
2662
Finished Programs / Re: SOLVED: better keyboard language switching
« Last post by skwire on January 20, 2012, 09:22 AM »
Welcome to the site, klausbh.  Thanks, Ath, for finding a great solution.  =]  I'll move the post.
2663
Skwire Empire / Re: Birthdays (simple birthday tracking app)
« Last post by skwire on January 19, 2012, 09:38 AM »
A great little programme! Thanks for providing it!

You're welcome.   :)  I'm glad you find it useful.

The only tiny thing that annoyed me was when I had to use Arrow down to increase the date. But no big deal!

Hehehe...sorry about that.  That's because of my laziness and decision to use a DropDownList control.   :-[

It would also be nice to have a localized version of it. Any chance of that?

Very doubtful.  AutoHotkey doesn't offer any sort of automatic localisation tools.  In other words, it would be a lot of work since it would all have to be handled manually.
2664
Post New Requests Here / Re: IDEA: "CopySmart"
« Last post by skwire on January 17, 2012, 01:17 PM »
Are you only ever selecting one file or one folder when you do this?  If so, writing something like this is infinitely easier.
2665
Post New Requests Here / Re: IDEA: Simple Sensatronics Tray Tool...
« Last post by skwire on January 17, 2012, 12:54 PM »
Welcome to the site.  =]  I should be able to help with this.  I'll contact you via PM.
2666
Living Room / Re: Planning a major programming project - tips requested
« Last post by skwire on January 13, 2012, 11:18 AM »
I just start randomly hitting the keyboard and hope it compiles at the end.   :D
2670
Post New Requests Here / Re: IDEA: Take highlighted address and add +4 to zip code
« Last post by skwire on January 12, 2012, 11:34 PM »
Here's a quick'n'dirty proof of concept:

http://skwire.dcmemb...snacks/Zip+4Tool.zip

Please let me know if it works for you.

2012-01-12_232934.png
2671
Post New Requests Here / Re: IDEA: Take highlighted address and add +4 to zip code
« Last post by skwire on January 12, 2012, 09:56 PM »
I might be able to leverage the USPS website itself.  Hang tight...
2672
N.A.N.Y. 2010 / Re: NANY 2010 Release: Anuran
« Last post by skwire on January 11, 2012, 09:57 AM »
Nice.  Thanks.  =]
2673
Post New Requests Here / Re: IDEA: Dynamic context menu for any application
« Last post by skwire on January 11, 2012, 12:03 AM »
skwire: yes, something like that. I will see if i can extend it more (have basic Autoit knowledge)

Awesome.   :up:  Holler if you have any questions.
2674
Post New Requests Here / Re: IDEA: Dynamic context menu for any application
« Last post by skwire on January 10, 2012, 04:47 PM »
Nice, skwire, I expected something like that :D

Thanks.  Stuff like this is easy in AHK.  However, creating a GUI for something like this would be much more work than the actual guts of the code.  I hope the original poster can get some use of that framework; I tried to make it logical and easy to follow.
2675
Post New Requests Here / Re: IDEA: Dynamic context menu for any application
« Last post by skwire on January 10, 2012, 03:58 PM »
Are there a program that can create custom context menus for any program, that can send command to the program.

I don't know of any but here's a basic AutoHotkey framework that you can extend:

Code: Autohotkey [Select]
  1.  
  2. ; Create dummy menu so we can delete it and
  3. ; create the context-sensitive one later.
  4. Menu, cMenu, Add, Dummy, Dummy
  5. Dummy: ; Dummy label
  6. Return
  7.  
  8. Return ; End of auto-execute section.
  9.  
  10.  
  11. #IfWinActive, Firefox
  12. {
  13.     #v:: ; Win+v hotkey.
  14.     {
  15.         ; Delete current menu.
  16.         Menu, cMenu, Delete
  17.         ; Build app-specific menu.
  18.         Menu, cMenu, Add, Show downloads, menuFirefox
  19.         Menu, cMenu, Add, Organize bookmarks, menuFirefox        
  20.         ; Show the menu at the mouse pointer.
  21.         Menu, cMenu, Show
  22.     }
  23.     Return
  24. }
  25.  
  26.  
  27. #IfWinActive, Notepad
  28. {
  29.     #v:: ; Win+v hotkey.
  30.     {
  31.         ; Delete current menu.
  32.         Menu, cMenu, Delete
  33.         ; Build app-specific menu.
  34.         Menu, cMenu, Add, Find, menuNotepad
  35.         Menu, cMenu, Add, Select all, menuNotepad        
  36.         ; Show the menu at the mouse pointer.
  37.         Menu, cMenu, Show
  38.     }
  39.     Return
  40. }
  41.  
  42.  
  43. menuFirefox:
  44. {
  45.     If ( A_ThisMenuItem = "Show downloads" )
  46.     {
  47.         SendInput, ^j
  48.     }
  49.     Else If ( A_ThisMenuItem = "Organize bookmarks" )
  50.     {
  51.         SendInput, ^+b
  52.     }
  53. }
  54. Return
  55.  
  56.  
  57. menuNotepad:
  58. {
  59.     If ( A_ThisMenuItem = "Find" )
  60.     {
  61.         SendInput, {F3}
  62.     }
  63.     Else If ( A_ThisMenuItem = "Select all" )
  64.     {
  65.         SendInput, ^a
  66.     }
  67. }
  68. Return

Pages: prev1 ... 102 103 104 105 106 [107] 108 109 110 111 112 ... 222next