Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 12/22/2013 in all areas

  1. No. Control panel applets are dlls and AutoIt can't be compiled to a dll with the right function prototypes. Wait actually it appears that you can register standard executables as control panel applets via the registry. http://msdn.microsoft.com/en-us/library/windows/desktop/hh127450%28v=vs.85%29.aspx
    2 points
  2. Download the latest BETA, multiple richedit creation problem was fixed. I will post back soon(by tomorrow) for the problem.
    1 point
  3. MadaraUchiha

    Ressource DLL

    Nevermind, found exactly what I was looking for: http://www.autoitscript.fr/forum/viewtopic.php?p=2006#p2006
    1 point
  4. All variables are passed 'not byref' by default. Normally byref and byval parameters are distinguished by function overloads but AutoIt doesn't support that right now. You can always have _AnythingV and _AnythingR where the V and R are for value and reference respectively.
    1 point
  5. Local $txt = "" Local $objWMIService = ObjGet("winmgmts:\\localhost\root\CIMV2") Local $colItems = $objWMIService.ExecQuery("SELECT * FROM Win32_UserAccount", "WQL", 0x10 + 0x20) If IsObj($colItems) Then For $objItem In $colItems If $objItem.Disabled = False Then $txt &= $objItem.Name & @crlf Next EndIf Msgbox(0,"", $txt)
    1 point
×
×
  • Create New...