
Mecrazycoder
Active Members-
Posts
109 -
Joined
-
Last visited
Content Type
Forums
Downloads
Forum Articles
Events
Everything posted by Mecrazycoder
-
Is it possible to download only x to y bytes from a file ? Thanks in advance.
-
Please anyone tel me regex for retrieving edyditye.default from the line "17-11-2010 15:03 <DIR> edyditye.default". Thanks in advance
-
Yeah you are right.I didn't test my code...
-
Try this $x = InputBox("Hi","Your Value:","") If @error=1 Then msgbox(48,"Error","error") $x=-1 EndIf If $x >= 0 Then MsgBox(48,"Your value",$x + 1387.4) EndIf
-
Can't able to auto login into web page
Mecrazycoder replied to Mecrazycoder's topic in AutoIt General Help and Support
Let me check.....Tanx -
Can't able to auto login into web page
Mecrazycoder replied to Mecrazycoder's topic in AutoIt General Help and Support
I don't think OS,IE,AutoIT versions are the problems because i can automate any web sites other than this one. Only thing that striking me is server. I am using Oracle web logic server. -
Can't able to auto login into web page
Mecrazycoder replied to Mecrazycoder's topic in AutoIt General Help and Support
Thanks. But its not working for me. -
Can't able to auto login into web page
Mecrazycoder replied to Mecrazycoder's topic in AutoIt General Help and Support
Actually its an web application that we developed. I am trying to do automated testing using AutoIT. -
Can't able to auto login into web page
Mecrazycoder replied to Mecrazycoder's topic in AutoIt General Help and Support
Actuallyn we need to supply password. That is my sample script.Problem was can't able to enter into any of the fields. Moreover i cant able to read the html content using autoit function -
Can't able to auto login into web page
Mecrazycoder replied to Mecrazycoder's topic in AutoIt General Help and Support
Thanks for the reply. But actually it is not the problem. I cant even able to read the HTML using AutoIT. Since that web page is making use of Yahoo UI, will it be the problem? -
Hi All, Right now i am trying to login into particular web page using AutoIT. But it seems my code for login fails.Please someone here help me to figure out the problem. I have attach the source for that web site. My code is something like #include <IE.au3> $oIE = _IECreate("http://www.xyz.com/Login.html") $oForm = _IEFormGetObjByName ($oIE, "Login") $oQuery = _IEFormElementGetObjByName ($oForm, "username") _IEFormElementSetValue ($oQuery, "Admin") _IEFormSubmit ($oForm) Thanks in advance Login.html
-
Give the full path of Outlook.exe or else run the script from Outlook.exe path.
-
Here is couple of answers For refreshing use _IEAction($oIE,"Refresh").If application use form then for copying/transferring money use _IEFormElementSetValue(). It will be fine,you give me the link for that page.
-
_GUICtrlTab_SetItemSize not working as it should
Mecrazycoder replied to Manjish's topic in AutoIt General Help and Support
Do you mean Confi or Config? If yes, then I can able to see it. -
Did you try Leech ftp? Its working good for me.
-
_GUICtrlTab_SetItemSize not working as it should
Mecrazycoder replied to Manjish's topic in AutoIt General Help and Support
I can able to see the text even after increasing the width.Can you be more specific? -
If my understanding is correct, you can click links using any one below _IELinkClickByIndex()_IELinkClickByText()
-
_GUICtrlTab_SetItemSize not working as it should
Mecrazycoder replied to Manjish's topic in AutoIt General Help and Support
Try this #include <GUIConstantsEx.au3> #include <TabConstants.au3> #include <WindowsConstants.au3> #include <GuiTab.au3> #Region ### START Koda GUI section ### Form= GUICreate("Form1", 1024, 700, 0,0) Dim $hTab1 = GUICtrlCreateTab(150, 8, 600, 550, BitOR($TCS_VERTICAL, $TCS_FIXEDWIDTH)) $a=_GUICtrlTab_SetItemSize($hTab1,20,100) $tab0 = GUICtrlCreateTabItem("Configure") $tab2=GUICtrlCreateTabItem("Configure Globals") $tab3=GUICtrlCreateTabItem("Configure Globals") $tab4=GUICtrlCreateTabItem("Configure Globals") $tab5=GUICtrlCreateTabItem("Configure Globals") GUISetState(@SW_SHOW) GUICtrlSetResizing(-1, $GUI_DOCKWIDTH+$GUI_DOCKHEIGHT) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd -
_GUICtrlTab_SetItemSize not working as it should
Mecrazycoder replied to Manjish's topic in AutoIt General Help and Support
I am not 100% sure but add GUISetState() after _GUICtrlTab_SetItemSize($hTab1,50,100). Note: I haven't see the code completely. I think GUISetState() not needed -
Oh... Thanks Let me do it
-
But few of my Colleague enabled it.
-
Tanx man.But will this problem happens due to some windows update?. Few of my colleagues successfully enable hibernate in their machine before updating windows. Anyway let me check about video card and let know you.
-
How can I send a url?
Mecrazycoder replied to rogerhuerta's topic in AutoIt General Help and Support
I think these links will help you Link 1Link2 -
How can I send a url?
Mecrazycoder replied to rogerhuerta's topic in AutoIt General Help and Support
But its working for me #include <IE.au3> _IECreate ("http://google.com", 1, 1,0) -
How can I send a url?
Mecrazycoder replied to rogerhuerta's topic in AutoIt General Help and Support
What do you mean? I can't get you.