Search:

Type: Posts; User: sskicker23

Search: Search took 0.01 seconds.

  1. Replies
    11
    Views
    10,036

    Re: IE Download File Prompt

    i would love to be able to use the urldownloadtofile but my problem is that I dont know how to determine the URL.....


    The site/database that I have to go to first requires me to login then fill...
  2. Replies
    11
    Views
    10,036

    Re: IE Download File Prompt

    I found the code below but I am having trouble getting it to run. It was setup on windows xp. It finds the File download window and clicks save it then finds the save as prompt. Then I can not get it...
  3. Replies
    11
    Views
    10,036

    IE Download File Prompt

    Hi All,

    I am in the process of making a Macro to automate a tedious process I go throguh every week. I have a bunch of logins in an excel file. I have to go to an internal website/database and...
  4. Re: VBA IE Problem Selecting Radio Button

    Got it


    Set htm = appIE.document.Frames("newTargetSearchFrame").document
    Set frms = htm.forms("TargetForm")
    Set Class1 = frms.document.getElementsByTagName("table")

    For Each inputelement In...
  5. Re: VBA IE Problem Selecting Radio Button

    I dont get it. Running the following code:


    subframe.document.forms("TargetForm").submit
    I got a permission denied error

    I then tried to use the send keys just to give it a try and I was...
  6. Re: VBA IE Problem Selecting Radio Button

    The Iframes name is newTargetSearchFrame.

    it has a form within the iframe that is TargetForm

    I have the xpath to the anchor:

    ...
  7. Re: VBA IE Problem Selecting Radio Button

    Just gave it a try.

    I get a runtime error 91 object variable or with block variable not set.

    Is there any additional data I should be looking for?
  8. Re: VBA IE Problem Selecting Radio Button

    Perfect :



    Set Frame = appIE.document.getElementById("newTargetSearchFrame")
    Set SubFrame = Frame.contentWindow.document.getElementById("TargetSelected")
    SubFrame.Value = "Target - 5675309 -...
  9. Re: VBA IE Problem Selecting Radio Button

    Great. I am now able to select the radio button but when i submit the form it does not recognize that the button has been clicked. Here is my code:



    Set Frame =...
  10. Re: VBA IE Problem Selecting Radio Button

    from what i can find it posts to a form:


    <form name="TargetForm" action="/tcf/Target.view" method="post">

    which is part of an iFrame:


    <iframe align="center" id="newTargetSearchFrame"...
  11. [RESOLVED] VBA IE Problem Selecting Radio Button

    Hi Guys,

    I am having a little trouble selecting a radio button on a webpage that has...alot of javascript fuctions. On a normal webpage I would execute the following codes:
    ...
Results 1 to 11 of 11



Click Here to Expand Forum to Full Width