
SHAHRAM
Active Members-
Posts
39 -
Joined
-
Last visited
Everything posted by SHAHRAM
-
thank you! I dont test if the page is loaded, with the wait option it just waits for the function to finish before continuing I simply use _IELoadWait() to set custom timeouts, however it should work the same if I used the _IECreate()'s wait option instead. and I am not sure if I skipped this waiting how I can check page load status before I call _IEBodyReadHTML(), However, AdlibRegister was the way to go, it worked thanks
-
yes I know, but during the time that those functions that I am waiting for to finish (eg IECreate()) havent finished or timed out, the whole script is on pause, so I cant call another function, or if I initiate the timer function first, I cant move on to the original function. specially in this case the IECreate() for a specific page takes around 25-30 sec to finish and I should wait for it to be able to get its content.
-
Hello, I am calling certain functions that might take a little time before they are finished eg (IECreate()) I wanted to see if it is possible while waiting for the the function to finish (_IELoadWait()), I could update a label with some timer showing the seconds of waiting....
-
Hello, I want to check if a global variable is set or not and set from within the function. Can someone help me why am I getting "Variable used without being declared." for "$CHECK"? #include <GUIConstantsEx.au3> AutoItSetOption('MustDeclareVars', 0) GUICreate("DUMMY", 532, 450, -1, -1) GUISetState(@SW_SHOW) chk() While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd Func chk() If IsDeclared($CHECK) Then EndIf EndFunc
-
Run multiple processes and wait for them
SHAHRAM replied to SHAHRAM's topic in AutoIt General Help and Support
Well, its working this way for, though I dont think Run() would give me the PID of the Remote Process if psexec is executed directly. RunWait() is very convenient that it waits for psexec to finish with running the remote program and then catches the PID which was returned as ERRORLEVEL (exit code), There is one problem with RunWait() though in this case, Is there any ways to capture the output of psexec from RunWait() inside autoit??????????????????? (right now the only thing I can do is to output it to a file ("2> x.log") and read the content of that file) PS. Explanation of why it is needed when psexec fails, it returns a windows error code instead of PID, for example "1326" for logon failure, but there is no way for me to know if this number is a PID or an error code, If I could get STDOUT of RunWait() the problem would be solved (I can look a word that identifies it as success eg "started", otherwise treat it as failure) But it seems "$STDERR_CHILD / $STDOUT_CHILD" only work with streams coming from Run() and I cant find any functions that captures output of RunWait(), -
Run multiple processes and wait for them
SHAHRAM replied to SHAHRAM's topic in AutoIt General Help and Support
thanx, I have been playing with it a little bit, running psexec is usually like "@ComSpec & ' /c psexec.exe ...'" so Run() returns pid of the cmd.exe on the local computer and not the remote process, but at the end I was able to use the "-d" switch on psexec which is "Don't wait for application to terminate" and then use RunWait() on it, this ways, psexec returns the process id as %errorlevel% which RunWait() catches, then using similar concept, process id can be passed to "PSLIST", and from the returned errorlevel I can see if the process was closed or not. -
Hello, I am using "PSEXEC" to run some software on a couple of remote computers at the same time and know when they are closed so my application can continue, My problem is if I used "RunWait", it goes from one client to another waiting for each to finish before going to the next and if I used "Run", I can execute them simultaneously but my application cant wait for them, so my question is, is it possible to run a couple of "RunWait"s at the same time.
-
nevermind, now it's working $hash = MD5Hash(MD5Hash("pass", 2, False) & "salt", 2, False)
-
Ok, I ran into a little problem, I am working on authentication/registration with passwords hashed by md5 in php which is stored in a database, when I use my own script or others that use one time hasing , md5(pass) , there is absolutly no problem, and hashes produced by the plugin and the php are the same, but now my original purpose is with "vbulletin", this is supposedly their hashing script : md5(md5($password) . $vbulletin->userinfo['salt']) that is md5(md5(pass).salt) , where salt is something varaible in the database so I am trying this way $hash1 = MD5Hash("pass", 2, True) & "salt" $hash2 = MD5Hash($hash1, 2, True) or $hash = MD5Hash(MD5Hash("pass", 2, True) & "salt", 2, True) but the result is absolutly different from what is stored in vbulletin's database. I am suspicious about the "salt" , as it sometimes contains alternative characters, and your plugin might interpret a different way. Please let me know if there is any solutions for this, cause I need this to work. BTW, amazin work.
-
Thanks, found the problem, I had an extra "exit" somwehre causing just a simple exit after the 2nd GUI, problem solved. thanx I am aware of that.
-
it's strange, it worked in this simple script, but I have a little more script which does some other functions before getting to the 2nd window, and the window disapears immediately, the reason i put the sleep there, I will try to see if I can find why the 2nd window dispears immediately without the sleep in the function?????
-
I have a GUI which at some point calls a function which will create another GUI, I am using OnEventMode in my script , but I can't use it in/after the 2nd GUI, here is a sample script, How can I make it work? #include <GUIConstants.au3> Opt("GUIOnEventMode", 1) $win1 = GUICreate("Win 1", 250, 70,-1,-1,$WS_CAPTION) GUICtrlCreateLabel("This is win1", 10, 10) $win = GUICtrlCreateButton("win2", 40, 40,80) GUICtrlSetOnEvent(-1, "win2") $ok = GUICtrlCreateButton("Ok", 140, 40,80) GUICtrlSetOnEvent(-1, "ok") GUISetState(@SW_SHOW) While 1 Sleep(1000) WEnd Func ok() Exit EndFunc Func win2() $win2 = GUICreate("Win 2", 250, 70,-1,-1,$WS_CAPTION) GUICtrlCreateLabel("This is win2", 10, 10) $ok = GUICtrlCreateButton("Ok", 100, 40,80) GUICtrlSetOnEvent(-1, "ok") GUISetState(@SW_SHOW) While 1 Sleep(1000) WEnd EndFunc
-
I am not whiteball I am using a list box but there shouldn't be any problem with combo boxes, I am using a simpler method GUICtrlCreateGroup("Please select the Network Adaptor you want to change:", 5, 20, 360, 140) $mylist=GUICtrlCreateList ("Loading Network Adaptors...", 25,40,270,120) GUICtrlSetLimit(-1,200) GUICtrlCreateGroup("", -99, -99, 1, 1) ; FINDING NETWORK ADAPTORS ; ================ NetAdap() Func NetAdap() $cmd = "netsh interface ip show config" $quotes = chr(34) $line = "" $foo = Run($cmd, @SystemDir, @SW_HIDE, $STDOUT_CHILD) While 1 $line &= StdoutRead($foo) If @error Then ExitLoop WEnd $adaptorNames = ExtractStrBetweenChars($line, $quotes) If $adaptorNames[0] = 0 Then GUICtrlSetData($mylist,"") GUICtrlSetData($mylist,"No Adaptor Was Found") Else $line = "" GUICtrlSetData($mylist,"") For $i = 1 To $adaptorNames[0] Step 1 GUICtrlSetData($mylist,$adaptorNames[$i]) Next EndIf EndFunc Func ExtractStrBetweenChars($str, $char) Dim $array[1] $occurrence = 0 While 1 $occurrence += 1 $start = StringInStr($str, $char, 0, $occurrence) If $start = 0 Then ExitLoop Else $occurrence += 1 $stop = StringInStr($str, $char, 0, $occurrence) - 1 EndIf _ArrayAdd($array, StringMid($str, $start + 1, $stop - $start)) WEnd $array[0] = UBound($array) - 1 Return $array EndFunc
-
Quick Report component is part of some programing languages , (if u already know..) here is the pic of the top of it : but I can't seem to able to click any of the buttons if u need a test app here is a free app to open saved qrp files using this component: http://www.zylsoft.com/repview.htm and I attached a sample QRP file if u need it. Any Ideas ????????? I am stuck trying to work this out!
-
There it goes : http://support.microsoft.com/kb/289125
-
no ways ha? hm...?
-
thanks for the info, but I didn't have any problems through that approach, what I needed was something that would change the deafult language in the background based on users choice.
-
in a windows with more than one input language installed, is there anyways with autoit to change the default input language of windows ?
-
Never mind, made it work, thanx anywyas
-
Nice Script from Dickb and nice GUI from craigholohan (very nice), but I was wondering if there could be possiblity to list the Network Adaptors in GUI so the user can actually select which one to change.
-
Preventing a key to be pressed
SHAHRAM replied to SHAHRAM's topic in AutoIt General Help and Support
thanx, that should do, it just didn't come to my mind for a sec -
I was wondering if there is a way to prevent a key (eg. ALT) to be pressed over an specific window (not completely).
-
Found this scrip http://www.autoitscript.com/forum/index.php?showtopic=13551 should work, but it returns I am offline, WinXP Pro , IE 7 ???? Any Ideas?
-
A little help on using this DLL API to get the connection status would be very helpful, Thanx
-
Thanx for your response I guess I could deal with AdlibEnable(), but now the ping function behaves abnormally in getting the connection status and ends prematurely after some time, I guess there will be a slight time out (4sec ?)which results in error being returned . I have a 2MB ADSL connection, I can imagin how it would be for slower connection, or if having a full speed download ============= AdlibEnable("CheckCon") Func CheckCon() Ping("www.google.com") If @error = 0 Then TraySetToolTip("Connected") Else TraySetIcon("Shell32.dll",10) TrayTip ( "Disconnected", "You have been disconnected.", 10 , 1) TraySetToolTip("Not Connected") sleep(1000) Exit EndIf EndFunc while ..... ============= Using the Wininet.dll, well, I have not been into how to use .dll API inside AutoIt, I will see what I can do.