Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 07/17/2024 in all areas

  1. pixelsearch

    TAB in Inputbox

    Hi mike1950r My post was more an answer to abberration who thought it was impossible to disable the forced $WS_TABSTOP style, so I suggested him a way to do it. Have you tried Andreik's script above ? It seems to do what you expect.
    1 point
  2. Andreik

    TAB in Inputbox

    Here is a hacky way: #include <WinAPISysWin.au3> #include <GuiEdit.au3> HotKeySet('{TAB}', 'Tab') $hGUI = GUICreate('Test') $cInput1 = GUICtrlCreateInput('test', 100, 100, 150, 25) $hInput1 = GUICtrlGetHandle($cInput1) $cInput2 = GUICtrlCreateInput('', 100, 200, 150, 25) $cInput3 = GUICtrlCreateInput('', 100, 300, 150, 25) GUISetState() Do Until GUIGetMsg() = -3 Func Tab() HotKeySet('{TAB}') If _WinAPI_GetFocus() = $hInput1 Then _GUICtrlEdit_ReplaceSel($hInput1, @TAB) Else Send('{TAB}') EndIf HotKeySet('{TAB}', 'Tab') EndFunc
    1 point
  3. You missed the main idea of the forum where you come to get help when you are stuck after you did some work. Simply asking for code it won't work well for you on a long term. Yet I will give you a hint to solve your issue: it doesn't have to be a bat file, you can simply save a report with source and destination for each moved file so you can restore them to initial state.
    1 point
  4. Yep I came across that a week or so ago. I think I may have even mentioned that in a previous post. Alas it is only 64 Bit though. Yes I did. Anyway I am quite happy using what I am using, which is mostly Free Download Manager 5 at the moment, due to the speed benefit. I have tweaked my code enough, so that it works pretty well. Now that I seem to have finished the tweaking and testing, I will probably rotate between aria2 and FDM5, depending on the overall size of the game files to download for a game.
    0 points
×
×
  • Create New...