Hirdetés

Új hozzászólás Aktív témák

  • BigBadPlaYeR

    senior tag

    válasz Magnat #48206 üzenetére

    Gyors dátum-választó ablakhoz alább az Autohotkey script, amit említettem. Elég hasonló a linkelt verzióhoz, de ez már eleve a Mo.-n szokásos dátum formátumra van formázva. Shift+Win+D kombinációra jelenik meg.

    #NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
    #Warn  ; Enable warnings to assist with detecting common errors.
    #SingleInstance Force    ; Automatically kill older Instance, and replace it!
    #Persistent    ; Run continously
    +#d::
    {
        Gui, myDatePicker:New, -Resize AlwaysOnTop ToolWindow, DatePicker
        Gui, Add, MonthCal, vMyCal 4 W-2
        Gui, Add, Button, x+5 hp +Default gDateRoutine, Insert
        Gui, Show
        Return
        
        GuiClose:

        Gui, Destroy
        Return
        
        DateRoutine:
        ;GuiControlGet, MyCal
        Gui, Submit
        Gui, Destroy
        FormatTime, MyDate, %MyCal%, yyyy.MM.dd.
        SendInput %MyDate%
        Return

Új hozzászólás Aktív témák

Hirdetés