Search the web
Sign In
New User? Sign Up
delphi-webbrowser · Delphi: Using IE's WebBrowser
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 8506 - 8535 of 10265   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
8506
What procedure should I use to get it? any tips? thanks Jonathan...
tijoen
Offline Send Email
Aug 1, 2004
6:58 pm
8507
var myDoc3: IHTMLDocument3; myElement: IHTMLElement; mySource: string; begin .......... myDoc3:= WebBrowser.Document as IHTMLDocument3; ...
Fotis Kokkoras
fkokkoras
Offline Send Email
Aug 2, 2004
8:58 am
8508
... Thanks, I found it in another way var i, j: integer; ovTable: OleVariant; begin ovTable := WebBrowser1.OleObject.Document.all.tags('TABLE').item (0); //...
tijoen
Offline Send Email
Aug 2, 2004
12:48 pm
8509
I would like some tips or a site with examples of using DOM within webbrowser... Thanks Jonathan...
tijoen
Offline Send Email
Aug 2, 2004
1:13 pm
8510
... if you have access to MS-Internet SDK documentation (is also available online) then the following does pretty mutch everything! IHTMLDOMNode Interface ...
Fotis Kokkoras
fkokkoras
Offline Send Email
Aug 2, 2004
1:45 pm
8511
MS Platform Software Development Kit (web development) has everything. for quick solutions try these forums. if you invest some time on the SDK then you can go...
Fotis Kokkoras
fkokkoras
Offline Send Email
Aug 2, 2004
1:54 pm
8512
I know, but I need some delphi examples, I am new with bad english, so its hard to learn from MS site, don't you know any site about DOM and delphi? or...
tijoen
Offline Send Email
Aug 2, 2004
10:49 pm
8513
Try these, they should be helpful in getting you off the ground: http://www.cryer.co.uk/brian/delphi/twebbrowser/twebbrowser_properties.htm ...
Anthony Watson
a_richard_wa...
Offline Send Email
Aug 3, 2004
12:52 am
8514
i would also add: http://www.delphi3000.com/ http://www.d-tnt.co.uk/ ... http://www.swissdelphicenter.ch/en/internet.php www.experts-exchange.com ...
Fotis Kokkoras
fkokkoras
Offline Send Email
Aug 3, 2004
7:29 am
8515
... your english are fine. regarding the SDK, accessing it on-line is a pain. you can probably get a copy on your pc, but it's a 120MB distribution. If you are...
Fotis Kokkoras
fkokkoras
Offline Send Email
Aug 3, 2004
7:44 am
8516
Hello, I have problem with webbrowser (embeddedwb): when i execute navigate method when the main form is hidden - only application icon in tray is shown) -...
cellerimus2000
Offline Send Email
Aug 6, 2004
2:35 am
8517
Hi, Been searching quite a while for this... what I want to do is each time user open new window, it will created in new tab pages... Is this possible? Thanks...
geoacid
Offline Send Email
Aug 6, 2004
2:37 am
8518
I'm trying to upload any type of file using an HTTP post thru TWebbrowser. Once the file is uploaded, the result is all sorts of encoded data. (but the file...
skunkshan
Offline Send Email
Aug 6, 2004
3:10 am
8519
something strange: embeddedwb1.FrameCount=5 but embeddedwb1.OleObject.document.forms.length=0 i must change some values of elements on that site What i must to...
grskiv
Offline Send Email
Aug 7, 2004
3:19 pm
8520
How can i detect and control other IE windows (not created by my program)...
grskiv
Offline Send Email
Aug 8, 2004
9:35 am
8521
How to intercept pop-up windows? How to prevent pop-up windows from appearing? How to direct pop-up windows to be shown in Delphi WebBrowser?...
Cyber
star_rigger
Offline Send Email
Aug 8, 2004
9:44 am
8522
You'll have to use FindWindow or something like that from the WIndows API, I think...
Anthony Watson
a_richard_wa...
Offline Send Email
Aug 8, 2004
3:03 pm
8523
Try by Setting the silent mode property of TWEbbrowser to True to prevent popups....
Anthony Watson
a_richard_wa...
Offline Send Email
Aug 8, 2004
3:04 pm
8524
Hi, ... You may need to import the mshtml type library to access IShellWindows Note: Untested - done from memory... procedure CheckIEWindows; var ShellWindows:...
Rik Barker
captainrik
Offline Send Email
Aug 9, 2004
9:18 am
8525
Hi, the trouble with doing things from memory is you forget important bits of information! CoShellwindows will also return any standard explorer windows that...
Rik Barker
captainrik
Offline Send Email
Aug 9, 2004
9:38 am
8526
Hi, Whats the diference between this: wbbrowser.OleObject.document.forms.length and this: Doc: IHTMLDocument2; Form: IHTMLElementCollection; doc :=...
tijoen
Offline Send Email
Aug 9, 2004
1:52 pm
8527
at some point I used to use both. Eventualy I have found the second one to be more convinient and elegant. It depends on what are you trying to do. If you need...
Fotis Kokkoras
fkokkoras
Offline Send Email
Aug 9, 2004
2:14 pm
8528
My Project: It is like a chat... inside the form_creat I will write(using document.write_psafearray..) a table and a row with 1 cell, then close the table when...
tijoen
Offline Send Email
Aug 9, 2004
2:42 pm
8529
I have a project in Delphi which gets large videos delivered to it. There are web sites which reference these videos, such as a http:// site.com/video.wmv...
ananymail
Offline Send Email
Aug 9, 2004
3:28 pm
8530
Hi, Suggestion : <div id="container"> <div id="elmentN"> </div><!-- elementN --> <div id="elmentN+1"> </div><!-- elementN+1 --> </div> <!-- container --> You...
Birger Sorensen
birger_52
Offline Send Email
Aug 9, 2004
3:41 pm
8531
how i can run that script? i have the source code...
grskiv
Offline Send Email
Aug 9, 2004
4:22 pm
8532
... you can use the createElement method of the IHTMLDocument2 interface. It takes a string as parameter (which, in your case will be...
Fotis Kokkoras
fkokkoras
Offline Send Email
Aug 10, 2004
1:51 pm
8533
with that code I wrote I can get like 100 lines without having problems with lowering speed of incoming text, but If I change to try to get at 200 lines before...
tijoen
Offline Send Email
Aug 10, 2004
2:01 pm
8534
... IMHO the delay is due to the page rendering. A table with 200 rows is a big animal and it takes time for IE to redraw the page after the modifications you...
Fotis Kokkoras
fkokkoras
Offline Send Email
Aug 10, 2004
2:59 pm
8535
I use delphi 6 and twebbroswer when i use the command navigateur.OleObject.Document.forms.item(0).submit; the program open a new window of internet explorer...
arnopub
Offline Send Email
Aug 11, 2004
12:46 am
Messages 8506 - 8535 of 10265   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help