topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Tuesday November 11, 2025, 7:28 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 ... 17 18 19 20 21 [22] 23 24 25 26 27 ... 38next
526
Finished Programs / Re: DONE: Personal Software Process Time Logger
« Last post by skrommel on May 16, 2006, 02:10 PM »
 :huh: Please try the exe-file 'till I can get it corrected.

Also, delete the existing ini-file!

Skrommel
527
Finished Programs / Re: DONE: Personal Software Process Time Logger
« Last post by skrommel on May 14, 2006, 11:20 AM »
 :) TaskLog v1.1 includes most of your suggestions.

You can change the default assosiation of csv files by rightclicking a csv-file and choosing Open with, and changing the default program.

Skrommel
528
 :) Try this one!

OpeningHours - Runs a program when inside a certain time interval, and closes it when outside.

- Command line:
OpeningHours.exe <part of program path> start=<start time HHMM> end=<end time HHMM> [ checkdelay=<time between checks in ms> run=<0=Don't run, 1=Run> close=<0=Don't close, 1=Close> kill=<0=Don't kill, 1=Kill> killdelay=<time to wait before killing a task in ms> hide=<1=Hide from the tray, 0=Show in the tray> ]

- Example:
OpeningHours.exe \Notepad.exe start=1200 end=2400 checkdelay=1000 run=1 close=1 kill=1 killdelay=5000 hide=0

You'll find the downloads and more info at 1 Hour Software by Skrommel.

Skrommel
529
 :) Should be no problem.

Skromme
530
 :) The only way I've found for this is to move the second monitor so it barely touches the first one in the Desplay settings.

XXXX
XXXX
XXXX
XXXXXXXX
    XXXX
    XXXX
    XXXX

Skrommel
531
Post New Requests Here / Re: DONE: LabelControl - Mouseless control
« Last post by skrommel on May 11, 2006, 08:33 AM »
 :tellme: Many menubars are really toolbars, so until I add an option to ignore certain windows, there's no shure way of doing this.

I see in the sourcecode that I've added no way to ignore menus. Will do.

Skrommel
532
:) This script should get your started.

Skrommel


;AutoClose.ahk
; Closes defined windows
;Skrommel @2006

#SingleInstance,Force           ;allow only one instance of this script
DetectHiddenWindows,Off         ;don't mind the hidden windows
SetWinDelay,10                  ;time to wait after window actions
SetKeyDelay,10                  ;time to wait between key presses
SetTitleMatchMode,2             ;1=match the beginning of the window title
                                ;2=match anywhere in the window title

windowcount=2                   ;number of defined windows
window1=ahk_class Notepad       ;<title text> ahk_class <window class> ;either part is optional
window2=Calc ahk_class SciCalc

pause=1000

Loop                            ;repeat forever
{
  Loop,%windowcount%            ;loop through the list
  {
    Sleep,100                   ;reduce processor usage
    window:=window%A_Index%     ;extract the correct window
    IfWinExist,%window%         ;check if window exists
    {
      Sleep,%pause%             ;wait before closing
      WinClose,%window%         ;close the window
    }
  }
}
533
 :) Have you tried ConfineMouse? Not quite what you asked for, but...

Skrommel
534
Post New Requests Here / Re: DONE: LabelControl - Mouseless control
« Last post by skrommel on May 10, 2006, 03:01 AM »
 :) LabelControl is still in early stages of development, 'cause I can't get to all the controls I want.

If you check the Settings screen you can remove the classes you don't want labeled.

Skrommel

535
Finished Programs / Re: DONE: Personal Software Process Time Logger
« Last post by skrommel on May 10, 2006, 01:43 AM »
 :) Great suggestion!

Skrommel
536
Post New Requests Here / Re: IDEA: Display Volume Level in TaskBar
« Last post by skrommel on May 09, 2006, 07:15 PM »
 :) Try IdleMute v2.1! Just added volume indicator to the tray icon.

Skrommel
537
 :) Try DragKing v1.3!

Added hotkeys for pasting and disabling, and a settings dialog.

Skrommel
538
 :) Try IpUpload v1.1!

Added more tags, changed the command line, added external IP detection.

ark2, you could add the command line to the Run key of the registry to make detection more difficult. And if you want to hardcode it, just edit the AutoHotkey sourcecode on my webpage.

Skrommel
539
 :) Try this one!

IpUpload - Upload current IP address to a FTP server.

Usage:
- Add the tags <ipaddress>, <time>, <username> or <computername> to the file to upload. These tags are replaced with the current values.
- Command line: IpUpload.exe <options>
- Example: IpUpload.exe -s ftp.server.com -l "c:\folder1\file.htm" -r "/folder2" -u user -p password -nic 0 -pause 5 -hide

Options:
-s <server>
  IP address of FTP server
-l <local path>
  Path of file to upload
-r <remote path>
  Folder on FTP server
-u <user name>
  User name
-p <password>
  Password
-nic <network adaptor>
  Network adaptor's IP address to use, 1 to 4, 0=external IP from showmyip.com
-pause <minutes>
  Time to wait between uploads, 0 exits
-hide
  Hides the tray icon

You'll find the downloads and more info at 1 Hour Software by Skrommel.

Skrommel
540
 :tellme: What version are you running? There's no code in the current version of DimSaver that moves the mouse...

Skrommel
541
 :) I should have updated ShowDialogsToo for a long time, now, and 1) should be possible.

2) Try to find their titles using AutoHotkey's Window Spy.

Skrommel
542
Skrommel's Software / Re: DelEmpty: request of 2 new features
« Last post by skrommel on May 03, 2006, 07:12 AM »
 :tellme: 1): You mean logging to a file?
2) I could drop the checkboxes all together instead, it would make selection simpler.

Skrommel
543
Post New Requests Here / Re: IDEA: Terminate processes and remove USB
« Last post by skrommel on May 03, 2006, 05:31 AM »
 :tellme: CloseAndEject uses Handles.exe from SysInternals, and it didn't find my USB by default either.

Would it be too much trouble to ask you to send me the file handles.txt from your CloseAndEject folder?

Skrommel
544
Skrommel's Software / Re: Label Control Suggestion
« Last post by skrommel on May 01, 2006, 03:15 PM »
 :) And it's done! Much simpler than I thought. Try LabelControl v1.5, plogenius!

Skrommel
545
Post New Requests Here / Re: DONE: LabelControl - Mouseless control
« Last post by skrommel on May 01, 2006, 03:07 PM »
 :) Uploaded LabelControl v1.5.

Added listview and tab item detection. Added use of numpad.

Skrommel
546
Skrommel's Software / Re: Label Control Suggestion
« Last post by skrommel on May 01, 2006, 01:56 PM »
 :) I'll get to this when I have added a few more controls to the detecton list.

Skrommel
547
Post New Requests Here / Re: IDEA: Terminate processes and remove USB
« Last post by skrommel on May 01, 2006, 01:25 PM »
 :) Try this one!

CloseAndEject [/url] - Close all open files before ejecting a drive.



Features:
- Press Eject to close all handles and eject the drive.
- Double leftclick a line to activate the process.
- Double rightclick a line to kill the process.
- Command line: CloseAndEject.exe <Drives> Eject
     Example: CloseAndEject.exe DE Eject
     Closes open files on drive D and E, ejects and exits.
- Uses Handle.exe by http://www.sysinternals.com/utilities/handle.html
- Use with caution! Closing handles can cause bluescreens!

You'll find the downloads and more info at 1 Hour Software by Skrommel.

Skrommel
548
Finished Programs / Re: DONE: RecentRun command line?
« Last post by skrommel on April 26, 2006, 11:44 AM »
 :) Or try RecentRun v1.5!

Corrected the sort by date order for W2000 for up to 1000 shortcuts.

Skrommel
549
 :tellme: I just fineread your post, Cavalcader, and you did actually request a somewhat different tool, with automatic matching of subfolders... But should it use the Or or the And parameter for matching? Or a parameter on it's own?

Skrommel
550
 :) Try FileToFolder!

I've barely tested it, so please try it out on something unimportant! To use it, save to FileToFolder.ahk and go to www.autohotkey.com and download AutoHotkey.


FileToFolder - Moves files to subfolders, based on their name

Syntax: FileToFolder "<BaseFolder>" "<SubFolder>" <Overwrite> <Copy> "<PartOfFilename>" ["<PartOfFilename>" "++<PartOfFilname>" "--<PartOfFilname>"]

Example: FileToFolder "C:\Download" "Antivirus" "anti" "vir" "++.exe" "--.zip"

  Moves all files containing anti or vir, and containing .exe and not containing .zip
  from C:\Download to C:\Download\Antivirus

  ++ means the filname must contain the pattern
  -- means the filname must not contain the pattern
  Include the word Overwrite to replace existing files.
  Include the word Copy to copy files instead of moving them.


Skrommel


;FileToFolder.ahk
; Moves files to subfolders, based on their name
;Skrommel @2006

If 0<3
  Goto,ABOUT

basefolder=%1%
subfolder=%2%
ormatch=
andmatch=
notmatch=
overwrite=0
copy=0

Loop,%0%
{
  If (A_Index<3)
    Continue
  param:=%A_Index%
  If (param="Overwrite")
  {
    overwrite=1
    Continue
  }
  If (param="Copy")
  {
    Continue
  }  StringLeft,action,param,2
  If (action="++")
  {
    StringTrimLeft,param,param,2
    andmatch=%andmatch%%param%`,
  }
  Else
  If (action="--")
  {
    StringTrimLeft,param,param,2
    notmatch=%notmatch%%param%`,
  }
  Else
    ormatch=%ormatch%%param%`,
}
StringTrimRight,ormatch,ormatch,1
StringTrimRight,andmatch,andmatch,1
StringTrimRight,notmatch,notmatch,1

StringSplit,andmatch,andmatch,`,

count=0
Loop,%basefolder%\*.*,0,0
{
  If A_LoopFileName Not Contains %ormatch%
    Continue
  If A_LoopFileName Contains %notmatch%
    Continue
  Loop,%andmatch0%
  {
    break=0
    pattern:=andmatch%A_Index%
    If A_LoopFileName Not Contains %pattern%
    {
      break=1
      Break
    }
  }
  If break=1
    Continue
  TrayTip,Moving %basefolder%\%subfolder%\%A_LoopFileName%
  count+=1
  IfNotExist,%basefolder%\%subfolder%
    FileCreateDir,%basefolder%\%subfolder%
  If copy=1
    FileCopy,%basefolder%\%A_LoopFileName%,%basefolder%\%subfolder%\%A_LoopFileName%,%overwrite%
  Else
    FileMove,%basefolder%\%A_LoopFileName%,%basefolder%\%subfolder%\%A_LoopFileName%,%overwrite%
}
If copy=1
  MsgBox,0,1 Hour Software by Skrommel - www.dcmembers.com\skrommel,FileToFolder copied %movecount% file(s)
Else
  MsgBox,0,1 Hour Software by Skrommel - www.dcmembers.com\skrommel,FileToFolder moved %movecount% file(s)
Return

ABOUT:
about=FileToFolder
about=%about%`nMoves files to subfolders, based on their name
about=%about%`n
about=%about%`nSyntax: FileToFolder "<BaseFolder>" "<SubFolder>" <Overwrite> <Copy> "<PartOfFilename>" ["<PartOfFilename>" "++<PartOfFilname>" "--<PartOfFilname>"]
about=%about%`n
about=%about%`nExample: FileToFolder "C:\Download" "Antivirus" "anti" "vir" "++.exe" "--.zip"
about=%about%`n
about=%about%`n  Moves all files containing anti or vir, and containing .exe and not containing .zip
about=%about%`n  from C:\Download to C:\Download\Antivirus
about=%about%`n
about=%about%`n  ++ means the filname must contain the pattern
about=%about%`n  -- means the filname must not contain the pattern
about=%about%`n  Include the word Overwrite to replace existing files.
about=%about%`n  Include the word Copy to copy files instead of moving them.
about=%about%`n
about=%about%`nFor more tools and information, please stop by at
about=%about%`n  https://www.donationcoder.com/Software/Skrommel
about=%about%`n
about=%about%`n1 Hour Software by Skrommel @2006
MsgBox,0,FileToFolder,%about%
Return
Pages: prev1 ... 17 18 19 20 21 [22] 23 24 25 26 27 ... 38next