Jump to content

Leaderboard

Popular Content

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

  1. All, Using SciTE for AutoIt3 ver:18.708.1148.0 which I believe was from the AutoIt install. I noticed your screen shot shows ver: 21.316.1639.0 When I run a program it shows: Starting AutoIt3Wrapper v.18.708.1148.0 SciTE v.4.1.0.0 ... I'm reinstalling from: https://www.autoitscript.com/site/autoit-script-editor/downloads/ which is dated 16-3-2021 It says Welcome to SciTE4AutoIt3 21.203.1500.3 Setup When I hit Ctrl+1 it shows SciTE Config for AUtoIt3 ver: 22.611.2153.0 That did it. It works. Thanks to all. I should know by now to reload before wasting everyone's time. Sorry about that.
    2 points
  2. ioa747

    Reg Export

    https://ss64.com/nt/index.html REG EXPORT [ROOT\]RegKey FileName.reg [/Y] [/reg:32 | /reg:64] ShellExecuteWait('REG', 'EXPORT "HKEY_LOCAL_MACHINE\SOFTWARE\FabFilter" "' & $_sSrcPath & '" /Y') Edit: informative I also noticed that the post order above is problematic assuming your path is this $_sSrcPath = "C:\Me\hkIm.reg" with the command below the path it gives us is ShellExecuteWait('REG', 'EXPORT "HKEY_LOCAL_MACHINE\SOFTWARE\FabFilter" "' & $_sSrcPath) EXPORT "HKEY_LOCAL_MACHINE\SOFTWARE\FabFilter" "C:\Me\hkIm.reg * " is missing the right one should have been ShellExecuteWait('REG', 'EXPORT "HKEY_LOCAL_MACHINE\SOFTWARE\FabFilter" "' & $_sSrcPath & '"') which was merged with the dialog confirmation switch ShellExecuteWait('REG', 'EXPORT "HKEY_LOCAL_MACHINE\SOFTWARE\FabFilter" "' & $_sSrcPath & '" /Y')
    1 point
  3. @ghost911 Use version 6.0.4, this is the latest version that creates a compact executable file and is supported on WindowsXP. Version 6.11 the minimum size of the compiled executable file starts at 250 kb.
    1 point
  4. AGsol, You need to look for the $LVN_COLUMNCLICK code within the WM_NOTIFY message. Add: GUIRegisterMsg($WM_NOTIFY, "_WM_NOTIFY")after the GUISetState(@SW_SHOW) line and then use this handler function: Func _WM_NOTIFY($hWnd, $iMsg, $wParam, $lParam) #forceref $hWnd, $iMsg, $wParam Local $tNMHDR = DllStructCreate($tagNMHDR, $lParam) Switch HWnd(DllStructGetData($tNMHDR, "hWndFrom")) Case $ListView1_Handle Switch DllStructGetData($tNMHDR, "Code") Case $LVN_COLUMNCLICK ; A column was clicked Local $tInfo = DllStructCreate($tagNMLISTVIEW, $lParam) Local $iCol = DllStructGetData($tInfo, "SubItem") ConsoleWrite("Column clicked: " & $iCol & @CRLF) EndSwitch EndSwitch Return $__LISTVIEWCONSTANT_GUI_RUNDEFMSG EndFunc ;==>_WM_NOTIFYIf you are unsure about GUIRegisterMsg and Windows message handlers, I recommend the GUIRegisterMsg tutorial in the Wiki. Please ask if you have any questions. M23
    1 point
×
×
  • Create New...