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...
Want to share photos of your group with the world? Add a group photo to Flickr.

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 7158 - 7187 of 10265   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
7158
Using the following code, I'm able to determine what the selection in a TWebBrowser is and display it in a message: procedure TMainFrm.Button1Click(Sender:...
shadowvorlon
Offline Send Email
May 1, 2003
11:39 am
7159
Sorry about the top post folks... Anyway... Jesse, Use FRange instead of the selection object... This code does a find in a browser object (MSHTML in this...
Dan Rhea
danratsirs
Offline Send Email
May 1, 2003
11:54 am
7160
the behavior of the ieDownload component is to append data to an existing file. I suggest that you insert a DeleteFile method call prior to executing the GO...
Harry Holzhauser
hholzhauser
Offline Send Email
May 1, 2003
2:50 pm
7161
Hi, Sorry for the delay.. Uploaded the source file. SDCInfo, is a small msg-window. ClickTest can probably be changed to use Windows messaging instead. I just...
Birger Sorensen
birger_52
Offline Send Email
May 3, 2003
1:08 am
7162
I want to load a page into a twebbrowser, change some of the form's fields and submit it back to an asp script. I have no access to the asp script, and don't...
steve_brydges
Offline Send Email
May 5, 2003
3:21 pm
7163
How hide LINKS and STANDARD BUTTONS bands in IE? I can hide AddressBar and MenuBar, ............. IE : IWebbrowser2; ........... IE.AddressBar:=false; ...
vic_vm75
Offline Send Email
May 5, 2003
3:35 pm
7164
Hi all, How do I use the TWebBrowser component, to open or initiate the instance of Active Document Server object. My intension is to replace the...
delphiquery
Offline Send Email
May 7, 2003
3:00 am
7165
Well, I lost the message that showed me the way to my solution but I wanted to say thanks to the person that pointed it out for that other guy in that other...
reddarin
Offline Send Email
May 7, 2003
2:32 pm
7166
I'm trying to add some Delphi Webbroker tags into the DHTML editor like this simple example: DHTMLEdit1.DocumentHTML := '<html><body>Hello ...
rfsoft
Offline Send Email
May 7, 2003
11:34 pm
7167
Are there any examples of how to get a toolbar to show up in my browser form, because I cant seem to find any....
dalewolver
Offline Send Email
May 8, 2003
5:18 pm
7168
Hi all! What is diffrerence between MS componets like DHTMLEdit, MSHTMLEdit, WebBrowser. As I can guess I can use WebBrowser in edit mode instead of DTHMLEdit....
mikeevteev
Offline Send Email
May 9, 2003
6:48 am
7169
How can one get the real full width and height of a webpage? Document.Body.scrollWidth does not work if there are frames. Is there a general way to get the...
tanescu
Offline Send Email
May 9, 2003
6:55 pm
7170
People, I'm having some problems in order to print a document. For example: Form1.EmbeddedWB1.Print; How can I get a possible problem with the printer like: -...
Eduardo Meyer
emeyer@...
Send Email
May 12, 2003
2:30 pm
7171
Finally got an anwser, and it's really simple: <BODY ondragover="return false" ondragenter="return false"> n....
iconinico
Offline Send Email
May 13, 2003
3:38 pm
7172
I looked and looked and couldn't find the answer to a problem I have had. Some forms don't recognize a .click on the button to submit the form. In my case, the...
reddarin
Offline Send Email
May 13, 2003
4:07 pm
7173
Maybe you need RegisterAsDropTarget property? ... into...
styx1402
Offline Send Email
May 13, 2003
4:45 pm
7174
Hi all, I have played with mimedll code which is for permanent pluggable mime filter , it is working fine. I want the following information regarding this code...
boddu anil kumar
anil_boddu
Offline Send Email
May 16, 2003
2:22 pm
7175
My dear TWebBrowser-Users, How can I send a (local) WebBrowser-page (including all images and other assets in the page) by Email via Outlook (or other Email- ...
khoebeek
Offline Send Email
May 16, 2003
2:50 pm
7176
There isn't a function to do what you're asking directly from TWebBrowser that I'm aware of, but you may want to try something like this: ...
Jesse@...
shadowvorlon
Offline Send Email
May 16, 2003
3:44 pm
7177
That doesn't work, Jesse. I tried this. Even ShellExecute(GetDesktopWindow(), nil, pChar('mailto:Someone@...?HTMLbody=' + cBody), nil, nil, ...
Koen Hoebeek
koenh@...
Send Email
May 16, 2003
3:51 pm
7178
I don't think this works even from within IE. The problem is that images are not part of the document (like a Word doc), but are merely links. I did a quick...
Brian Matchey
bmatchey
Offline Send Email
May 16, 2003
4:50 pm
7179
You can actually save off a self-contained archive (MHT) but if my memory serves correct I don't believe that this method is exposed in the control. The next...
Mark Rickan
thx1138_ca
Offline Send Email
May 16, 2003
5:01 pm
7180
Jesse, I was also interested in this and thanks. Is it also possible to attach a file to the email? Also, do you know the parameters for say Outlook? Many...
Stephen Bell
vector77uk
Offline Send Email
May 16, 2003
5:15 pm
7181
Some mailers supports the extended syntax with some usefulf features. For example, the MS Outlook supports the file attachment via ShellExecute: var pCh:...
Koen Hoebeek
koenh@...
Send Email
May 16, 2003
5:26 pm
7182
Apparently my suggestion wouldn't work, but Koen suggested the following that works sometimes, but not others: var pCh: PChar; begin pCh := ...
Jesse@...
shadowvorlon
Offline Send Email
May 16, 2003
5:57 pm
7183
Hello, I used Navigate(URL) (Get) to get CGI script results, but seems it truncates too big strings. Then I tried to get the result from Indy and to load to...
Dmitry Skrizhewsky
dmitryskrizh...
Offline Send Email
May 18, 2003
9:31 am
7184
What version of IE are you using? Seems like I've hard that earlier versions of IE didn't allow very long URL strings, but newer versions allow very long...
Jesse@...
shadowvorlon
Offline Send Email
May 18, 2003
10:24 am
7185
Hello Jesse, Sunday, May 18, 2003, 1:24:41 PM, you wrote: Jdmc> What version of IE are you using? Seems like I've hard that earlier Jdmc> versions of IE...
Dmitry Skrizhewsky
dmitryskrizh...
Offline Send Email
May 18, 2003
12:19 pm
7186
Hello Jesse, Solved. I really had to use POST instead of GET. _________________________ Regards, Dmitry mailto:dskrizhewsky@......
Dmitry Skrizhewsky
dmitryskrizh...
Offline Send Email
May 18, 2003
3:41 pm
7187
Hi Sorry a bit new TWebrowser to this but using this group have managed to include good HTML editing in an app we produce. We've set the component to show no...
Paul_Redstone
Offline Send Email
May 18, 2003
6:50 pm
Messages 7158 - 7187 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