Jump to content

Search the Community

Showing results for tags 'download box'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Announcements and Site News
    • Administration
  • AutoIt v3
    • AutoIt Help and Support
    • AutoIt Technical Discussion
    • AutoIt Example Scripts
  • Scripting and Development
    • Developer General Discussion
    • Language Specific Discussion
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Categories

  • AutoIt Team
    • Beta
    • MVP
  • AutoIt
    • Automation
    • Databases and web connections
    • Data compression
    • Encryption and hash
    • Games
    • GUI Additions
    • Hardware
    • Information gathering
    • Internet protocol suite
    • Maths
    • Media
    • PDF
    • Security
    • Social Media and other Website API
    • Windows
  • Scripting and Development
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Location


WWW


Interests

Found 1 result

  1. Hello Everyone I am trying to download a website for www.bls.gov. I have the following code uptill now - #include <IE.au3> $oIE = _IECreate("http://data.bls.gov/cgi-bin/dsrv?en") $oForm = _IEFormGetCollection($oIE, 2) $oSelect = _IEFormElementGetObjByName($oForm, "industry_code") _IEFormElementOptionSelect($oSelect, "1013 Manufacturing", 1, "byText") _IEFormSubmit ($oForm) $oForm = _IEFormGetCollection($oIE, 2) $oSelect = _IEFormElementGetObjByName($oForm, "area_code") _IEFormElementOptionSelect($oSelect, "19000 Iowa -- Statewide", 1, "byText") $a=19001 _IEFormSubmit ($oForm) $oForm = _IEFormGetCollection($oIE, 2) $oSelect = _IEFormElementGetObjByName($oForm, "owner_code") _IEFormElementOptionSelect($oSelect, "5 Private", 1, "byText") _IEFormSubmit ($oForm) $oForm = _IEFormGetCollection($oIE, 2) $oSelect = _IEFormElementGetObjByName($oForm, "type_code") _IEFormElementOptionSelect($oSelect, "5 Average Annual Pay", 1, "byText") _IEFormSubmit ($oForm) $oForm = _IEFormGetCollection($oIE, 2) $oSelect = _IEFormElementGetObjByName($oForm, "size_code") _IEFormElementOptionSelect($oSelect, "0 All establishment sizes", 1, "byText") _IEFormSubmit ($oForm) $oForm = _IEFormGetCollection($oIE, 2) _IEFormSubmit ($oForm) _IEFormImageClick($oIE, "More Formatting Options", "alt") $oForm = _IEFormGetObjByName($oIE, "format") $oSelect = _IEFormElementGetObjByName($oForm, "output_type") _IEFormElementOptionSelect($oSelect, "Multi-series table", 1, "byText") $oSelect = _IEFormElementGetObjByName($oForm, "delimiter") _IEFormElementOptionSelect($oSelect, "tab delimited", 1, "byText") _IEFormSubmit ($oForm) Now from here I need to click the download option. I am not able to figure out how it needs to be done(Sorry not too much programming experience). Here is the script for the download option- <div class="download" style="border:none;padding:4px;"> <form name="excel" action="/pdq/SurveyOutputServlet" method="POST" target="_blank"></form> <b>Download:</b> <input id="download_xls" type="image" src="/images/buttons/download_button_xls.gif" alt="Download as an Excel File" value="Download as an Excel File" style="vertical-align: middle"> <input type="hidden" name="request_action" value="get_data"> <input type="hidden" name="reformat" value="true"> <input type="hidden" name="from_results_page" value="true"> <input type="hidden" name="years_option" value="specific_years"> <input type="hidden" name="delimiter" value="comma"> <input type="hidden" name="output_type" value="multi"> <input type="hidden" name="periods_option" value="all_periods"> <input type="hidden" name="output_view" value="data|"> <input type="hidden" name="to_year" value="2010"> <input type="hidden" name="from_year" value="2001"> <input type="hidden" name="output_format" value="excel"> <input type="hidden" name="original_output_type" value="default"> <input type="hidden" name="series_id" value="ENU190855051013"> <input type="hidden" name="series_id" value="ENU190875051013"> <input type="hidden" name="series_id" value="ENU190895051013"> <input type="hidden" name="series_id" value="ENU190915051013"> <input type="hidden" name="series_id" value="ENU190935051013"> <input type="hidden" name="series_id" value="ENU190955051013"> <input type="hidden" name="series_id" value="ENU190975051013"> <input type="hidden" name="series_id" value="ENU190995051013"> </div> Any help will really be appreciated. Thanks Abhishek Aggarwal
×
×
  • Create New...