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:14 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 ... 99 100 101 102 103 [104] 105 106 107 108 109 ... 222next
2577
Finished Programs / Re: DONE: turn IE proxy server on/off
« Last post by skwire on March 06, 2012, 12:35 PM »
Here's the official site for the application:

http://skwire.dcmemb...page=ie-proxy-toggle
2578
Finished Programs / Re: DONE: turn IE proxy server on/off
« Last post by skwire on March 06, 2012, 10:57 AM »
Fantastic.  Thanks for reporting back.   :D
2579
Coding Snacks / MOVED: export table with template
« Last post by skwire on March 05, 2012, 10:38 AM »
2580
Finished Programs / Re: DONE: export table with template
« Last post by skwire on March 05, 2012, 08:29 AM »
Great to hear.  Thanks for reporting back.   :)
2581
N.A.N.Y. 2011 / Re: NANY 2011 Release: Snap DB
« Last post by skwire on March 05, 2012, 08:28 AM »
You're welcome.  Glad I could help.   :D
2582
N.A.N.Y. 2011 / Re: NANY 2011 Release: Snap DB
« Last post by skwire on March 05, 2012, 07:39 AM »
Nope, the newest version is there.  You might try clearing your cache or using a different browser.
2583
Finished Programs / Re: DONE: export table with template
« Last post by skwire on March 04, 2012, 06:35 PM »
DeVamp, download the latest Snap DB and install it.  Then grab this file:  DeVamp_XML.zip

Extract the DeVamp_XML.ahk file into the export subfolder in your Snap DB install folder.  If you don't have an export subfolder, simply create one.  Start Snap DB and populate it with data like in your first post.  Filter it however you want and then choose the new menu option: File > Export to... > DeVamp_XML.ahk from the menu.  The export script will then ask you where you want to save the resultant XML file.  Keep in mind that you could edit the export script to automatically dump the XML file to wherever you want.  Also, as I stated previously, you're not limited to AHK export scripts.  You could use Perl, Python or anything that can take a filepath and read in a file.

One other thing.  Since your XML specified UTF-8, that DeVamp_XML.ahk script assumes you're running some version of AHK_L in order to be able to write the file in UTF-8.  If you are not using AHK_L, simply comment out the following line in the script:

FileEncoding, UTF-8

Let me know how it goes.  Thanks.

2584
N.A.N.Y. 2011 / Re: NANY 2011 Release: Snap DB
« Last post by skwire on March 04, 2012, 06:24 PM »
Website | Download
v1.3.7 - 2012-03-04
    + Added calendar buttons to the add/edit record dialogues.
    + Added functionality to export current data views to external scripts
      or programs.  See Help > Contents for more details.
2585
Finished Programs / Re: DONE: export table with template
« Last post by skwire on March 03, 2012, 02:51 PM »
I was thinking something like the great "SnapDB" to store the records and perhaps a 2nd program or "plugin" to define the export :-)

I don't want to step on Ath's toes, but I've just implemented a sort of "export to script" functionality in Snap DB that allows you to send the current data view you see in Snap DB to another file (.ahk, .pl, .exe, etc.).  This will allow you to process and format that data however you see fit.  I've made a sample AHK export script that spits out an XML file in the format you specified above.  Would you still be interested?
2586
Finished Programs / Re: DONE: turn IE proxy server on/off
« Last post by skwire on March 03, 2012, 02:24 PM »
You're very welcome.   :)  Glad I could help.

Please let us know how it functions from your workplace.  If it passes muster there, I'll release this application on my website as I feel others could get some use out of it.
2587
Finished Programs / Re: DONE: turn IE proxy server on/off
« Last post by skwire on March 02, 2012, 08:37 PM »
Give this a try:  IE Proxy Toggle

Green icon means the proxy is enabled; a grey icon means disabled.  Single-click the tray icon to toggle or use the right-click menu.  Tested on XPSP3/32 and W7/64.

2012-03-02_222433.png
2588
Finished Programs / Re: DONE: turn IE proxy server on/off
« Last post by skwire on March 02, 2012, 04:40 PM »
Hi, William, and welcome to the site.  I wrote a program at my last job that does half of what you want.  I called it ProxyKiller so I'm sure you can guess which half.   I'll see about fleshing it out to cover your needs.  Stay tuned.
2589
Post New Requests Here / Re: IDEA: Application memory limiter
« Last post by skwire on March 02, 2012, 09:58 AM »
Here is a QnD (Quick 'n Dirty) AutoHotkey script that watches an executable name and fires off a message box if memory usage of the process exceeds one gig.  Obviously, change firefox.exe to your required executable name.

Code: Autohotkey [Select]
  1. ExeName := "firefox.exe"
  2. SetTimer, MemWatcher, 10000
  3.  
  4. Return ; End of auto-execute section.
  5.  
  6.  
  7. MemWatcher:
  8. {
  9.     myMem := GetProcessMemoryInfo( ExeName )
  10.     If ( myMem > 1048576 )
  11.     {
  12.         MsgBox, 48, Alert!, Memory exceeded for %ExeName%
  13.     }
  14. }
  15. Return
  16.  
  17.  
  18. GetProcessMemoryInfo( pName ) ; http://www.autohotkey.com/forum/post-223061.html#223061
  19. {
  20.    Process, Exist, %pname%
  21.    pid := Errorlevel
  22.  
  23.    ; get process handle
  24.    hProcess := DllCall( "OpenProcess", UInt, 0x10|0x400, Int, false, UInt, pid )
  25.  
  26.    ; get memory info
  27.    VarSetCapacity( memCounters, 40, 0 )
  28.    DllCall( "psapi.dll\GetProcessMemoryInfo", UInt, hProcess, UInt, &memCounters, UInt, 40 )
  29.    DllCall( "CloseHandle", UInt, hProcess )
  30.  
  31.    list = cb,PageFaultCount,PeakWorkingSetSize,WorkingSetSize,QuotaPeakPagedPoolUsage
  32.    ,QuotaPagedPoolUsage,QuotaPeakNonPagedPoolUsage,QuotaNonPagedPoolUsage
  33.    ,PagefileUsage,PeakPagefileUsage
  34.  
  35.    /*
  36.    cb := NumGet( memCounters, 0, "UInt" )
  37.    PageFaultCount := NumGet( memCounters, 4, "UInt" )
  38.    PeakWorkingSetSize := NumGet( memCounters, 8, "UInt" )
  39.    WorkingSetSize := NumGet( memCounters, 12, "UInt" )
  40.    QuotaPeakPagedPoolUsage := NumGet( memCounters, 16, "UInt" )
  41.    QuotaPagedPoolUsage := NumGet( memCounters, 20, "UInt" )
  42.    QuotaPeakNonPagedPoolUsage := NumGet( memCounters, 24, "UInt" )
  43.    QuotaNonPagedPoolUsage := NumGet( memCounters, 28, "UInt" )
  44.    PagefileUsage := NumGet( memCounters, 32, "UInt" )
  45.    PeakPagefileUsage := NumGet( memCounters, 36, "UInt" )
  46.    */
  47.  
  48.    n=0
  49.    Loop, Parse, list, `,
  50.    {
  51.       n+=4
  52.       SetFormat, Float, 0.0 ; round up K
  53.       this := A_Loopfield
  54.       this := NumGet( memCounters, (A_Index = 1 ? 0 : n-4), "UInt") / 1024
  55.  
  56.       ; omit cb
  57.       If A_Index != 1
  58.          info .= A_Loopfield . ": " . this . " K" . ( A_Loopfield != "" ? "`n" : "" )
  59.    }
  60.  
  61.    ; Return "[" . pid . "] " . pname . "`n`n" . info ; for everything
  62.    Return WorkingSetSize := NumGet( memCounters, 12, "UInt" ) / 1024 ; what Task Manager shows
  63. }
2590
Post New Requests Here / MOVED: IDEA: GDF File Reader
« Last post by skwire on March 01, 2012, 11:38 PM »
2592
Finished Programs / Re: DONE: Automatically compute sizes of tangram pieces
« Last post by skwire on March 01, 2012, 11:27 PM »
You're very welcome.  I'm glad you've found it useful.  =]
2593
Finished Programs / Re: DONE: Automatically compute sizes of tangram pieces
« Last post by skwire on March 01, 2012, 03:05 PM »
YES! Perfect!


Here you go:  Tangram Calc
2594
N.A.N.Y. Challenge 2007 / Re: Volt - v0.0.6 - December 17, 2006
« Last post by skwire on March 01, 2012, 09:49 AM »
Unfortunately, the audio sub-system changed entirely in Vista and W7 so I'm not sure if I'll ever get Volt updated to support those OSs.   :(
2595
Finished Programs / Re: DONE: Automatically compute sizes of tangram pieces
« Last post by skwire on February 29, 2012, 11:07 PM »
Here's a preliminary screenshot:

2012-02-29_230345.png

Was this something like you had in mind?
2596
General Software Discussion / Re: Recreate files but without content to target drive
« Last post by skwire on February 29, 2012, 07:18 PM »
Thank you everything works great now!  I dropped 10 bucks in your tip jar at paypal.

Great to hear everything is working as requested.  Thanks very much for the donation.  I'll promote this build to v1.0.6 and release it.   :D
2597
Post New Requests Here / Re: IDEA: change cursor depending on program
« Last post by skwire on February 28, 2012, 03:52 PM »
You can use my Mat application to change the cursor via a batch file, shortcut, script or whatever.
2598
Coding Snacks / MOVED: Idea: Checking .asc files with GUI
« Last post by skwire on February 28, 2012, 02:55 PM »
2599
Finished Programs / Re: SOVLED: Checking .asc files with GUI
« Last post by skwire on February 28, 2012, 02:54 PM »
I'm terribly sorry.  I might not have the right to move this thread to some place where it makes more sense, since this doesn't belong here.

No need to apologise, bastik, as that's what these forums are for.  Welcome to the site as well.  I'll mark this thread as solved and move it for you.
2600
N.A.N.Y. 2009 / Re: NANY 2009 Release: Trout (audio player)
« Last post by skwire on February 27, 2012, 09:03 PM »
actly this file? Atm it will only append the clicked file to the playlist and from time to time I just want to listen to the files that I select inside XYplorer instead of the files that are in the Trout playlist.

No, there is not.  However, you may want to give my Looper program a try.  That's what I use for quick previewing of audio files within my file manager (Salamander).
Pages: prev1 ... 99 100 101 102 103 [104] 105 106 107 108 109 ... 222next