Tracy, I just discovered a reference that I find quite helpful. The HTML DOM Objects section at http://www.w3schools.com/jsref/dom_obj_document.asp.
After playing with and studying your code I have several questions: 1. The line loIE = oForm.oIE appears to make a copy of the object. In other testing I have come to suspect that loIE more like an alias and that when oForm goes away, loIE is no longer available. Is this correct? 2. Your code lets me see the IE screen but does not allow resizing or user interaction. I suspect that I will end up needing to manually login to at least one of the sites and then let the automation take over. Is there a way to allow user interaction with IE directly? 3. I don't understand the function of the allowoutput = .f. line. I changed it to .t. thinking it might let me resize and interact with the session but there was no change. 4. The init procedure in the oleIE class seems like it might control the size of the IE window. Changing the values has no effect. Does the procedure need to be called to have an effect or is it automatically run when the object is created? 5. Finally - I have not been able to figure out what terminates the IE session. (In the other code I have been working with there is a loIE.quit line.) Thanks in advance, Joe On Mon, Feb 17, 2014 at 3:36 PM, Tracy Pearson <[email protected]>wrote: > Joe Yoder wrote on 2014-02-17: > > Thanks much Tracy, > > > > I've been working on an XP machine with IE 8 and never considered the > > possibility that a newer combination might break my code. You not only > > identified the gotcha but supplied the solution! > > > > It seems to me there must be a better way to learn what terms one can > use > > when working with the DOM or perhaps collections in general. So far I > have > > learned by seeing others code and by experimentation. Can you point me > to > > a reference or tutorial so I don't need to bother the pros on the list? > > > > Thanks again, > > > > Joe > > > > Joe, > > I wish I could. The things I learned, were based on Trial and Error and > some > informative FoxTalk or FoxPro Advisor articles. > I believe your missing ".item()" will be your last hurtle when using DOM > "How-To's" found on the web. There may be more, if you run in to them, feel > free to post a snippet of code based on what I posted demonstrating the > problem. I'll be happy to help, if I can. > > Tracy Pearson > PowerChurch Software > > [excessive quoting removed by server] _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech Searchable Archive: http://leafe.com/archives/search/profox This message: http://leafe.com/archives/byMID/profox/CABQeDnUg4dw2CBwq76AemS4O1uZSWQ7xtPDGV5bFwPfca=ne=a...@mail.gmail.com ** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.

