Jump to content

taralex

Members
  • Posts

    9
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

taralex's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. fixed it already. was an anti-virus program blocking port 25.
  2. Guys, I'm getting the error '@ERROR = 4 - Unable to create socket'. Can someone give me a hint where to look for the possible cause of this problem?
  3. great tool, thank you!
  4. I tried your funcitons, but even the example failed to work, the error reads: C:\Program Files\AutoIt3\Include\ActiveAccessibility_Library.au3 (160) : ==> Variable must be of type "Object".:
  5. Jos, thanx a lot, converting it to the numeric representation helped! I thought AutoIt took care about types conversion automatically...
  6. This is total b*shit, guys, tell me, where I suck. I'm using a console application to read some value and return it to me. I get the correct value ok, at least when displayed in a message box, but then, when I use it in an IF statement (or any other comparison for that matter), I get some crap, have a look, here's the script: $id = Run(@ComSpec & " /c C:\temp\GetValue.exe ChannelName", "C:\temp", @SW_HIDE, 2) While 1 $line = StdoutRead($id) If @error Then ExitLoop If $line <> "" then $ChannelValue = $line sleep(50) Wend MsgBox (0, "", $ChannelValue) If $ChannelValue <> 500 Then MsgBox (0, "", "ChannelValue is something else") $ChannelValue = 1 EndIf The problem is, I see 500 in the message box, but then, the "ChannelValue is something else" is also displayed How come that StdoutRead function returns a value that I couldn't compare?
  7. I downloaded Ranorex, yea, it's impressive, but there's no documentation, and I, not being a programmer, have no clue how to deal with this object-oriented stuff. What I like about AutoIt, is that it's simple and well-documented, if you need to do something - you open the help file and look for the function, and an example. Now I couldn't find any way to access in controls inside .NET containers, especially grids... So I open Ranorex from time to time, try to do something with it, fail, and return to AutoIt. But I'll still need to deal with this .NET issue... So either I find someone to teach me how to program in C# or someone who'll help me solve my problem using AutoIt...
  8. I'm trying to read values from .net controls by $value = ControlGetText ( "window title", "", "[CLASS:WindowsForms10.window.8.app.0.11c7a8c; INSTANCE:11]" ) msgbox (0, "", $value) the message box shows nothing. I wonder if it is possible at all to get the current value of an edit control inside a .net container... even less chances to read the contents of a grid inside a .net container, the AU3Info window just gives the ID, like "CLASS:WindowsForms10.window.8.app.0.11c7a8c; INSTANCE:11" of the whole container, but sees nothing inside of it, and there is no possibility to access individual cells in the grid... does somebody know a way to solve this?
  9. I'm trying to read values from .net controls by $value = ControlGetText ( "window title", "", "[CLASS:WindowsForms10.window.8.app.0.11c7a8c; INSTANCE:11]" ) msgbox (0, "", $value) the message box shows nothing. I wonder if it is possible at all to get the current value of an edit control inside a .net container... even less chances to read the contents of a grid inside a .net container, the AU3Info window just gives the ID, like "CLASS:WindowsForms10.window.8.app.0.11c7a8c; INSTANCE:11" of the whole container, but sees nothing inside of it, and there is no possibility to access individual cells in the grid... does somebody know a way to solve this?
×
×
  • Create New...