Jump to content

BlankMind

Active Members
  • Posts

    29
  • Joined

  • Last visited

About BlankMind

  • Birthday 12/26/1986

Profile Information

  • Location
    Brazil
  • Interests
    Games, OST and PCs.

BlankMind's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Worked great, thanks! It's in the function documentation, I should read it more carefully next time.
  2. Nothing has changed. I've already tested the function actually using the argument.
  3. I'm trying to make a DLL to use with DllCall. I'm using Dev-cpp. Here is the code: #define EXPORT __declspec(dllexport) #include <cstdlib> #include <cstdio> extern "C" { EXPORT int teste(int argumento) { return 23; } } And a test script calling the function: $retorno = DllCall ("functions.dll","int","teste","int",10) If @error <> 0 Then MsgBox(0,"","Error:" & @CRLF & @error) Else MsgBox(0,"",$retorno[0]) EndIf It gives a "This program found a problem..." Windows screen. If I call the function without any arguments: $retorno = DllCall ("functions.dll","int","teste") it works and returns the correct value. What am I doing wrong when using arguments? Thanks.
  4. Is there a way to detect a double-click on a list (GuiCtrlCreateList) in a GUI? Thanks again (second question in 5 minutes muttley).
  5. I want to execute a file (like a .txt) like user has double-clicked it, so Windows open the file with default application. I thought about using Run, but it seemed to be only for executable files. Thanks for the help muttley
  6. Thank you for answers. I think I will have to use {TAB} anyway .
  7. I need to select a text field on a webpage, but I didn't want to use MouseMove or Send (to send {Tab}s). I tried to use Control commands, but Au3Info doesn't shows any Control ID when I select the field. I'm using Mozilla Firefox, but I can use Internet Explorer or Opera if I have to.
  8. Thank you two guys, I'll study your answers and probably do what I want .
  9. I'm a bit confused about GuiCtrlCreateList command. Well, I want to make four things: 1 - Read the selected item of the list. 2 - Delete the selected item of the list. 3 - Move a item up and down, changing the order of the items. 4 - Know the number of the line (line 1, line 2...) that the selected item is. I know I'm being boring, but I'm trying to post less questions I can, but after try doing something for 2 hours and can't do I have to ask someone
  10. Why it doesn't work under Windows 98? It worked fine on XP but didn't on 98, although I found the "kernel32.dll"...
  11. Well, I want to change my GUI title when clicking on a tab item. I've tried something like this: (...) $tab1 = GUICtrlCreateTabItem("Tab1") (...) While 1 $msg = GuiGetMsg() Select Case $msg = $tab1 WinSetTitle("Old Title","","New Title") (...) It didn't work, in fact it didn't work with any action (like MsgBox). How can I make this happen?
  12. AutoIT documentation is more than enough to learn the basic, and then you will like it and will learn more and more things with practice. Study the documentation and try to make the things by yourself. If questions appear then you ask in this forum, being a little more specific than "How can I learn". Good luck.
  13. Some questions... 1 - Where are the documentation source of 3.1.0 stable release? 2 - And about translation. To translate I change the texts, then I use txt2html and when I finish I send the html to someone of AutoIT team for compile the help file?
  14. I was going to check if my topic had some reply when I see this: Sticky: Help File Translations, i should pay more attention . Thank you for your reply, I think is a better idea wait for the next v3 release too, but I will give a look in the file you said just to be prepared for my big task hehe. Bye.
×
×
  • Create New...