novi
Active Members-
Posts
34 -
Joined
-
Last visited
About novi
- Birthday 10/13/1981
Profile Information
-
WWW
http://autoitespa.espanaforo.com/index.htm
-
Interests
Programación en Lenguajes Script
VB 6.0
la naturaleza y las cosas vivas
novi's Achievements
Seeker (1/7)
0
Reputation
-
Saludos! Les invito a visitar un nuevo espacio en idioma español para aprender Autoit3. Aquí puedes descargar la documentación para la versión Actual de Autoit3 y mucho más... !Disfruten este nuevo sitio! Greetings! I invite you to visit a new space for learning Spanish language Autoit3. Here you can download documentation for the current version of Autoit3 and more ... ! Enjoy this new site!
-
Error! Running an exe from within the script exe. Help!
novi replied to novi's topic in AutoIt General Help and Support
Well, I guess I'll be content for now to the implementation of embedded *. exe from outside the script. Thanks for everything! I hope to make this script available to the community soon. Thank you! -
Error! Running an exe from within the script exe. Help!
novi replied to novi's topic in AutoIt General Help and Support
I think no one understands what I want. I just want to know how to run a *. exe embedded into the executable and added to it with the directive: # AutoIt3Wrapper_run_after = ResHacker.exe-add% out%,% out %,...... NO need to save first to a temporar directory, ie run from within the script. -
Error! Running an exe from within the script exe. Help!
novi replied to novi's topic in AutoIt General Help and Support
Well, well, not alermen, did not say it through anything. I assure you my intentions are good. The purpose of this script is run 'listF.exe' embedded in the executable. This program is written is C and what it does is list all the functions of a *. dll and return information from them. The surprise was saying is a file with all functions of the component scilexer.dll I'm writing right now so we can all benefit, you know, one hand washes the other and both hands wash the face. I feel better, I apologize if I caused trouble! -
Error! Running an exe from within the script exe. Help!
novi replied to novi's topic in AutoIt General Help and Support
I understand, I also think that is the problem. But how then can pass the embedded executable path? I do not want to download the file first because I want to run the program from a CD, for example. Would greatly appreciate someone to help me, and I have a surprise for everyone if I can do this! -
Error! Running an exe from within the script exe. Help!
novi replied to novi's topic in AutoIt General Help and Support
Thanks @ Melba23 I have examined the post that tells me, all I'll ask anyway @ Zedna's, thank you very much! -
Greetings! How can I run a *. exe included in my executable? I have done these things: Note: I use the UDF # include "resources.au3" in my script. # AutoIt3Wrapper_useupx = n # AutoIt3Wrapper_run_after = ResHacker.exe-add% out%,% out%, listF.exe, RCDATA, TEST_BIN_1, 0 # Endregion then I tried to use it like this: RunWait (@ ComSpec & '/ c' & _ResourceGet (TEST_BIN_1 ") & 'kernel32.dll> yor.txt') It does not work!. I do not want to save ResourceSaveToFile ($ FileName ,...) I want to use from within the executable. What could be happening?
-
GCS Search 1.07 : update old scripts downloaded from forums
novi replied to Jikoo's topic in AutoIt Example Scripts
very naice Jikoo! no test yet, but will be see OK! -
Very useful! Thanks
-
Hello everybody! I'm doing a spell check and I have a problem. I would like to know how to make a context menu in real time to let me select an item and execute a UDF. I have a context menu as in Word with misspelled words and "do something" when we click on one of them. Thank you very much for your help!
-
Hola, Perdonen que hable en mi lenguaje nativo. Pueden utilizar Google como yo para traducir el mensaje Como ha habido tanta demanda por un script que pueda ejecutar una UDF asociada al evento Clic derecho del mouse, entre los cuales me encontraba yo también, me decidí a realizar un script simple que pueda dar respuesta a esto. El código puede mejorarse y no le añadí control de errores. Solo es la idea. A ustedes les toca perfeccionarlo. Disfrútenlo! #include <ButtonConstants.au3> #include <GUIConstantsEx.au3> #include <StaticConstants.au3> #include <WindowsConstants.au3> Global $posMouse Global $ArrayIDControl[1] Opt("GUIOnEventMode", 1) Opt("MouseCoordMode",0) Opt("GUICoordMode",1) #Region ### START Koda GUI section ### Form= $Form1 = GUICreate("My GUI Right Button Command Event", 410, 234, 197, 143) GUISetOnEvent($GUI_EVENT_CLOSE, "Form2Close") $Button1 = GUICtrlCreateButton("Button1", 16, 72, 89, 25, 0) _GUICtrlStoreDatos(-1,"_Yor") $Label1 = GUICtrlCreateLabel("Label1", 40, 120, 36, 17) _GUICtrlStoreDatos(-1,"_Yor2") GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 Sleep(100) $posMouse = GUIGetCursorInfo ($Form1) If $posMouse[3] = 1 Then CheckControlList($posMouse[4]) EndIf WEnd func Form2Close() Exit EndFunc func _Yor() MsgBox(0,"","Yea!") EndFunc func _Yor2() MsgBox(0,"","Yea! another") EndFunc ;Store the ID of controls and Function Name ;$IDControl = Id del control (-1 también es posible) ;$Function = funcionName func _GUICtrlStoreDatos($IDControl,$Function) Local $Pos,$Funct ;estableciendo el ID de control para -1 If $IDControl = -1 Then $IDControl = _GUIGetLastCtrlID() redim $ArrayIDControl[UBound($ArrayIDControl)+1] $ArrayIDControl[UBound($ArrayIDControl)-1] = $IDControl&@TAB&$Function $ArrayIDControl[0] += 1 EndFunc ;Get the ControlID for last Control Created Func _GUIGetLastCtrlID() Local $aRet = DllCall("user32.dll", "int", "GetDlgCtrlID", "hwnd", GUICtrlGetHandle(-1)) Return $aRet[0] EndFunc ;==>_GUIGetLastCtrlID ;Chequea si el control está en la lista y ejecuta la función asociada. func CheckControlList($IDControl) Local $i,$datos for $i = 1 to $ArrayIDControl[0] $datos = StringSplit($ArrayIDControl[$i],@TAB,1);separando el id del FuncName if $datos[1] = $IDControl then call($datos[2]) ExitLoop EndIf Next EndFunc
-
I use as a server Dwebpro staff. But when I add this AuCGI.exe I do not want to run. I open a page. Html and your horses: but the script does not work, I get this message: "what are you trying to do?" help?
-
Hello to all, good desire to know as I can show a information tabulada in autoit. I have always used grid in other languages, like stringrid in delphi, for example. The idea is to show in a window of Autoit the data referring to the services of Windows, that is to say, to show name, state, description, Tipode beginning, etc of each service. greetings and thank you very much!
-
hi everyone. can anybody tell me how can i change de screen resolution from a script, please help me soon. thanks pd: Excuse my english please
-
Hello mrmasterminh A card index dll is a reusable- codes set, that is, than when the System Operativo or a program in particular needs them, calls them from the dll and executes code. For example, when he shows a window of message, the System Operativo what he does the fact is that he calls this show from of a specific dll . you understand Now then. The AutoiT is one language of very powerful script that can interact with functions of the System Operativo, these interactions dll that are put up with as libraries of code reusable solves them with the card indexes's utilization. Them ActiveX also card indexes are of reusable codes but they utilize these codes besides to accomplish interactions but complex as creating confections, objects, etc. Good good luck Note : Forgive my English, I do not talk to it very much. For that reason I utilize a translator. Novi