Jump to content

Mecrazycoder

Active Members
  • Posts

    109
  • Joined

  • Last visited

Everything posted by Mecrazycoder

  1. Is it possible to download only x to y bytes from a file ? Thanks in advance.
  2. Please anyone tel me regex for retrieving edyditye.default from the line "17-11-2010 15:03 <DIR> edyditye.default". Thanks in advance
  3. Yeah you are right.I didn't test my code...
  4. 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
  5. 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.
  6. Thanks. But its not working for me.
  7. Actually its an web application that we developed. I am trying to do automated testing using AutoIT.
  8. 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
  9. 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?
  10. 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
  11. Give the full path of Outlook.exe or else run the script from Outlook.exe path.
  12. 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.
  13. Do you mean Confi or Config? If yes, then I can able to see it.
  14. Did you try Leech ftp? Its working good for me.
  15. I can able to see the text even after increasing the width.Can you be more specific?
  16. If my understanding is correct, you can click links using any one below _IELinkClickByIndex()_IELinkClickByText()
  17. 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
  18. 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
  19. Oh... Thanks Let me do it
  20. But few of my Colleague enabled it.
  21. 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.
  22. I think these links will help you Link 1Link2
  23. But its working for me #include <IE.au3> _IECreate ("http://google.com", 1, 1,0)
  24. What do you mean? I can't get you.
×
×
  • Create New...