Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 06/05/2024 in all areas

  1. TheSaint

    Kobo Cover Fixer

    Why is it that I am thinking you made a BIG ASS with your first post here about all this.
    2 points
  2. I think it's always good to rethink your design decisions when a script doesn't produce the desired results. I therefore consider your post to be very helpful.
    1 point
  3. sl23

    Welcome to AutoIt 1-2-3

    Thanks for your reply. I did manage to get it running. I had to install SciTE full package, the portable version doesn't have everything in it for some reason. But I copied the full install to my portable AutoIT installation, and then magic! It worked
    1 point
  4. Since you didn't post any code I assume that you have a simple label so you can use GUICtrlSetTip(). There is an example in help file.
    1 point
  5. ioa747

    Autoit password style

    ; https://www.autoitscript.com/forum/topic/211400-autoit-password-style/?do=findComment&comment=1529603 #include <GUIConstants.au3> #include <WinAPIGdi.au3> GUICreate("Login", 200, 100) GUICtrlCreateLabel("", 10, 10, 180, 19, $SS_BLACKFRAME) GUICtrlSetState(-1, $GUI_DISABLE) Local $idInput = GUICtrlCreateInput("123456", 13, 11, 154, 17, $ES_PASSWORD, $WS_EX_TOOLWINDOW) Local $idEye = GUICtrlCreateLabel("👁", 167, 11, 21, 17, $SS_CENTERIMAGE), $bHide = True GUICtrlSetFont(-1, 14, 400, 0) Local $idEyeSl = GUICtrlCreateLabel("/", 174, 8, 10, 21) GUICtrlSetBkColor(-1, $GUI_BKCOLOR_TRANSPARENT) GUICtrlSetFont(-1, 16, 300) Local $iDefault = GUICtrlSendMsg($idInput, $EM_GETPASSWORDCHAR, 0, 0) GUISetState() While True Switch GUIGetMsg() Case $GUI_EVENT_CLOSE Exit Case $idEye $bHide = Not $bHide GUICtrlSetState($idEyeSl, $bHide ? $GUI_SHOW : $GUI_HIDE) GUICtrlSendMsg($idInput, $EM_SETPASSWORDCHAR, $bHide ? $iDefault : 0, 0) _WinAPI_RedrawWindow(GUICtrlGetHandle($idInput)) EndSwitch WEnd
    1 point
  6. https://www.tenforums.com/tutorials/91417-enable-disable-numerical-sorting-file-explorer-windows-10-a.html
    1 point
  7. TheDcoder

    Kobo Cover Fixer

    Yes bud, used it all the time. I see that you are indeed using TABs
    1 point
  8. Melba23

    Double click for Listview

    Jewtus, No, but you can just add another case inside the existing handler like this: Func WM_NOTIFY($hWnd, $iMsg, $iwParam, $ilParam) Local $hWndFrom, $iIDFrom, $iCode, $tNMHDR, $hWndListView $hWndListView = $List If Not IsHWnd($List) Then $hWndListView = GUICtrlGetHandle($List) $tNMHDR = DllStructCreate($tagNMHDR, $ilParam) $hWndFrom = HWnd(DllStructGetData($tNMHDR, "hWndFrom")) $iCode = DllStructGetData($tNMHDR, "Code") Switch $hWndFrom Case $hWndListView Switch $iCode Case $LVN_COLUMNCLICK Local $tInfo = DllStructCreate($tagNMLISTVIEW, $ilParam) Local $ColumnIndex = DllStructGetData($tInfo, "SubItem") _ListView_Sort($hWndFrom,$ColumnIndex) Case $NM_DBLCLK ; Fire the dummy if the ListView is double clicked GUICtrlSendToDummy($cDummy) EndSwitch EndSwitch Return $GUI_RUNDEFMSG EndFunc Now you have everything inside the one handler. M23
    1 point
×
×
  • Create New...