Jump to content

ohnoryno

Members
  • Posts

    9
  • Joined

  • Last visited

Everything posted by ohnoryno

  1. DllOpen("C:\Windows\System32\user32.dll") DllOpen("c:WindowsSysWOW64 user32.dll") "1" Returns After copying to a different path User32.dll DllOpen("c:user32.dll") "-1" Returns 32-bit is not a problem. Only 64-bit only is this.
  2. I tested using VMware (Windows7 64bit) The execution script is not the problem. However DllOpen () continues "-1 failure" Returns
  3. kernel32.dll gdi32.dll user32.dll I want to run a Windows DLL from a different path 32-bit Windows, DllOpen() can be executed in a different path (ex, [F:.], [ In usb path] ) $i=DllOpen(@ScriptDir & "\user32.dll") MsgBox(0,"",$i) DllCall($i, 'int', 'keybd_event', 'int', 0x41, 'int', 0, 'int', 0, 'ptr', 0) DllCall($i, 'int', 'keybd_event', 'int', 0x41, 'int', 0, 'int', 2, 'ptr', 0) But 64-bit Windows7, the system32 folder only DllOpen() can be I need DllOpen () will run on a special environment Please help me
  4. In windows xp User32.dll (ver 5.1.2600.5512) it can run DllOpen(),DllCall() But In Windows 7, the different path User32.dll (ver 6.1.7600.16384) DllOpen(),DllCall() can not run In special circumstances, the command of the keyboard events are needed 22.au3 $i=DllOpen(@ScriptDir & "user32.dll") DllCall($i, 'int', 'keybd_event', 'int', 0x41, 'int', 0, 'int', 0, 'ptr', 0) DllCall($i, 'int', 'keybd_event', 'int', 0x41, 'int', 0, 'int', 2, 'ptr', 0)
  5. "Send(), MouseClick()" is a situation that should not be used. With "ControlClick" should only is But ControlClick("On-Screen Keyboard","","N401","left",1) not run How to run?
  6. ----- #include "Misc.au3" if _Singleton("test\test",1) = 0 Then Msgbox(0,"Warning","An occurence of test is already running") Exit EndIf ----- since Autoit 3.2.12.0 installed Not Run... only msbox "An occurence of test is already running"
  7. -------------------[script]-------------------------------------------------------------------- Sleep(2000) WinWait("ACDSee 10 Photo Manager - InstallShield Wizard") ControlClick("ACDSee 10 Photo Manager - InstallShield Wizard","","Button1") ------------------------------------------------------------------------------------------ Good Run~ ----------------------------------- But Window in Mouse Not Run...
  8. RunWait('msiexec /qb- /i"' & @ScriptDir & '\wcp\wcp.msi"') ->not error But!!! RunWait('msiexec TRANSFORMS="\wcp\WCP.MST" TARGETDIR="%ProgramFiles%\Common Files\wcp" /qb- /i"' & @ScriptDir & '\wcp\wcp.msi"') ->error Why??? RunWait(@COMSPEC & " /c " & @ScriptDir & '\wcp\wcp.msi TARGETDIR="%ProgramFiles%\Common Files\wcp" TRANSFORMS="\wcp\WCP.MST" /qb- ', "", @SW_HIDE) @ScriptDir = 'c:\' -> not error But!!! @ScriptDir = 'C:\Documents and Settings\' @ScriptDir = 'C:\Program Files' ->path error
×
×
  • Create New...