Search:

Type: Posts; User: dmb-job

Search: Search took 0.02 seconds.

  1. Replies
    74
    Views
    6,153

    Re: A Program to Automate a Program

    The reference to mozctl.dll got lost.
    I restored and I can now Right click and can see the menu to access the 'view source'. It appears that mozilla does not support 'innerText', but 'innerHTML'...
  2. Replies
    74
    Views
    6,153

    Re: A Program to Automate a Program

    I just transferred my data files to a new hard drive without IE7. The computer would not let me uninstall IE7. I reinstalled all my programs. I put the old drive into an old computer for access of...
  3. Replies
    74
    Views
    6,153

    Re: A Program to Automate a Program

    SHdocVw.dll now shows up in the References, but does not show up in the ToolBox in VB6 nor VB5 in the computer that I have done all the proir development. ( see post above ) ieframe.dll shows up...
  4. Replies
    74
    Views
    6,153

    Re: A Program to Automate a Program

    to: Andrew G. Thanks again.
    VB6 crashed because I updated from beta to full verson of IE7. Lost SHdocVw.dll component reference. I think I just fixed that. i am burried in fixing my...
  5. Replies
    74
    Views
    6,153

    Re: A Program to Automate a Program

    Udate: When converting my form to VB 2005 I tracked down the error: HRESULT: 0x800706BA to be "StackOverflowException in ServicedComponent cannot be caught " via...
  6. Replies
    74
    Views
    6,153

    Re: A Program to Automate a Program

    TO: Andrew G
    The reason you have not heard from me is because my VB6 crashed when I tried to update my program to 2005. It crashed at the time of the conversion when it tried to convert the form. ...
  7. Replies
    74
    Views
    6,153

    Re: A Program to Automate a Program

    Quote:
    Originally Posted by Andrew G

    WebBrowser1.Document.links.Item(6).Click


    Hopefully this will work. 6 is the link number of Watch List.

    end Andrew G's Quote
  8. Replies
    74
    Views
    6,153

    Re: A Program to Automate a Program

    This generate an error!
    Please keep trying.

    Winnie-the-Pough
  9. Replies
    74
    Views
    6,153

    Re: A Program to Automate a Program

    By request from: Andrew G.
    Attached is the web page Javascript for the 'main' frame. Suggest searching for the words "WatchList" to locate the area which I want to simulate the 'LinkTarget'. ...
  10. Replies
    74
    Views
    6,153

    Re: A Program to Automate a Program

    To: Andrew G.

    I sent you a method of getting the source by private message. Nominally I would not use pprivate messsaging, but I think this is an exceptional situation. I did not think that...
  11. Replies
    74
    Views
    6,153

    Re: A Program to Automate a Program

    The web cite is a $5/trade version of Ameritrade broker. The site offers the same trading interface as the higher price Ameritrade, but I gave up hand holding in exchange for the lower price. The...
  12. Replies
    74
    Views
    6,153

    Re: A Program to Automate a Program

    The web cite is a $5/trade version of Ameritrade broker. The site offers the same trading interface as the higher price Ameritrade, but I gave up hand holding in exchange for the lower price. The...
  13. Replies
    74
    Views
    6,153

    Re: A Program to Automate a Program

    New approach:
    Is the follow reference applicable as it seems to be? During development, I need to be able to access the web on other sites, so I need to write a script to disable the warnings for...
  14. Replies
    74
    Views
    6,153

    Re: A Program to Automate a Program

    Try navigating to the website in your webbrowser, then navigate to
    javascript:linkTarget('/cgi-bin/apps/u/WatchListDisplay');"

    Thanks, but the above and any 'javascript' that is posted generates...
  15. Replies
    74
    Views
    6,153

    Re: A Program to Automate a Program

    Thanks guys. :wave:
    I am peeling the onion and finding what is on the next layer.
    "Good software like good food takes time to prepare."
    There has to be a pony in there under all this .....

    I...
  16. Replies
    74
    Views
    6,153

    Re: A Program to Automate a Program

    reply to Andrew G. : Taking a stab in the dark...


    WebBrowser1.Document.All("portfolioWatchLists").Click


    Thanks:
    This generates:

    Run-Time Error '91': Object variable or with block...
  17. Replies
    74
    Views
    6,153

    Re: A Program to Automate a Program

    Pardon my intrusion, but I have a similar problem which I have posted in many places and received no useful responses. It looks like the respondents on this Thread seem to understand the type of...
  18. Replies
    1
    Views
    856

    Re: Embedding Javascript into VB6

    Dim SubmitString As String

    SubmitString = "<td> submit=" + """" + "linkTarget('/cgi-bin/apps/u/WatchListDisplay');" + "><a href=" + """#""" + "></a></td>"

    WebBrowser1.navigate...
  19. Replies
    1
    Views
    856

    Embedding Javascript into VB6

    I want to click a button on a web page. The innerHTML contains this:

    <td class="subMenuOff" id="portfolioWatchLists" onmouseover="parent.changeSubMenuBgColor(this);" ...
  20. Replies
    74
    Views
    6,153

    Re: A Program to Automate a Program

    I have been posting all over the veb into forums and have had no useful responses, so I am tagging along on this post where there seems to be responses to similar problems. I have a similar problem...
  21. Replies
    0
    Views
    1,234

    Clicking JavaScript from VB6 WebBrowser

    The web site Java Script contains code typically as:


    Code:
    <td class="subMenuOff" id="portfolioWatchLists" onmouseover="parent.changeSubMenuBgColor(this); "...
  22. Re: Tab to textbox, Tab 22 away from present tab, WebBrowser

    Thanks, ZYNDER
    I selected a misleading forum title, sorry.

    I am trying to Tab to a Button and other locations on the frame that I cannot get to directly via an http from a location of the...
  23. Tab to textbox, Tab 22 away from present tab, WebBrowser

    I can send a http Post command and point to Tabbed textbox in VB6 WebBrowser but I want to go to a Button which is 22 tab locations higher. I could create a loop with
    "SendKeys vbTab, True"
    and...
  24. Replies
    3
    Views
    731

    Re: Raising JavaScript Event from VB6

    While searching for information on DOM as suggested in one of the above responses, I found this:
    http://keyword.netscape.com/ns/boom...?query=ms759132
    which explains clone Method
    Clones a copy of...
  25. Replies
    3
    Views
    731

    Raising JavaScript Event from VB6

    I used WebBrower to navigate and have a Web page visible which has JavaScript MouseClick events. I want to be able to trigger these events from VB6 code. Can this be done.

    The...
Results 1 to 25 of 25



Click Here to Expand Forum to Full Width