Hi,
I would like to make thumbnails of web page by capture content of a
WebBrowser. By example, capture http://www.google.com.
I used WebBrowser control with Framework 2.0.
I try this :
*************************************************
WebBrowser w = (WebBrowser)sender;
Rectangle rec = w.Bounds;
Bitmap bitm = new Bitmap(rec.Width, rec.Height);
w.BringToFront();
w.DrawToBitmap(bitm, rec);
picScreenshot.Image = bitm;
bitm.Save(@"c:\temp.jpg");
bitm.Dispose();
*************************************************
But it doesn't work (DrawToBimap seems to be not managed by the WebBrowser
control).
How can I do to make these kind of thumbnails ?
A+ 8 3290
Dnia 29-03-2006 o 19:18:40 Prosperz <pr***************@hotmail.com>
napisa³: Hi,
I would like to make thumbnails of web page by capture content of a WebBrowser. By example, capture http://www.google.com.
I used WebBrowser control with Framework 2.0.
I try this :
************************************************* WebBrowser w = (WebBrowser)sender;
Rectangle rec = w.Bounds;
Bitmap bitm = new Bitmap(rec.Width, rec.Height);
w.BringToFront();
w.DrawToBitmap(bitm, rec);
picScreenshot.Image = bitm;
bitm.Save(@"c:\temp.jpg");
bitm.Dispose();
*************************************************
But it doesn't work (DrawToBimap seems to be not managed by the WebBrowser control).
How can I do to make these kind of thumbnails ?
[PD] Theoretically you can try to play with WM_PRINT or WM_PRINTCLIENT
message (create HDC and send it as a param of a message an then copy it to
the graphics). I have done that with some controls and it works,
unfortunately I don't have any sample code now. The second, much simpler
but also a little bit less elegant idea is to do it this way:
destinationGraphics.CopyFromScreen(
webBrowser.PointToScreen(new Point(0, 0)),
new Point(0, 0), webBrowser.Size);
Of course your control must be fully visible - if any window will cover it
the capture will be corupt.
--
Piotr Dobrowolski Piotr.Dobrowolski@_usun_gmail.com
I never used WM_PRINT and I don't know how to use it. Can you be more
precise ?
I would like to precise that I want to make a screenshot of an entire web
page even if only a part is visible in the WebBrowser...
Maybe I must not use WebBroser to do that.
"Piotr Dobrowolski" <Piotr.Dobrowolski@_usun_gmail.com> a écrit dans le
message de news: op***************@da-pdobrowolski.windtelecom.pl... Dnia 29-03-2006 o 19:18:40 Prosperz <pr***************@hotmail.com> napisa³:
Hi,
I would like to make thumbnails of web page by capture content of a WebBrowser. By example, capture http://www.google.com.
I used WebBrowser control with Framework 2.0.
I try this :
************************************************* WebBrowser w = (WebBrowser)sender;
Rectangle rec = w.Bounds;
Bitmap bitm = new Bitmap(rec.Width, rec.Height);
w.BringToFront();
w.DrawToBitmap(bitm, rec);
picScreenshot.Image = bitm;
bitm.Save(@"c:\temp.jpg");
bitm.Dispose();
*************************************************
But it doesn't work (DrawToBimap seems to be not managed by the WebBrowser control).
How can I do to make these kind of thumbnails ? [PD] Theoretically you can try to play with WM_PRINT or WM_PRINTCLIENT message (create HDC and send it as a param of a message an then copy it to the graphics). I have done that with some controls and it works, unfortunately I don't have any sample code now. The second, much simpler but also a little bit less elegant idea is to do it this way: destinationGraphics.CopyFromScreen( webBrowser.PointToScreen(new Point(0, 0)), new Point(0, 0), webBrowser.Size);
Of course your control must be fully visible - if any window will cover it the capture will be corupt.
-- Piotr Dobrowolski Piotr.Dobrowolski@_usun_gmail.com
Dnia 29-03-2006 o 20:32:46 Prosperz <pr***************@hotmail.com>
napisał: I never used WM_PRINT and I don't know how to use it. Can you be more precise ?
I would like to precise that I want to make a screenshot of an entire web page even if only a part is visible in the WebBrowser...
Maybe I must not use WebBroser to do that.
"Piotr Dobrowolski" <Piotr.Dobrowolski@_usun_gmail.com> a écrit dans le message de news: op***************@da-pdobrowolski.windtelecom.pl... Dnia 29-03-2006 o 19:18:40 Prosperz <pr***************@hotmail.com> napisa³:
Hi,
I would like to make thumbnails of web page by capture content of a WebBrowser. By example, capture http://www.google.com.
I used WebBrowser control with Framework 2.0.
I try this :
************************************************* WebBrowser w = (WebBrowser)sender;
Rectangle rec = w.Bounds;
Bitmap bitm = new Bitmap(rec.Width, rec.Height);
w.BringToFront();
w.DrawToBitmap(bitm, rec);
picScreenshot.Image = bitm;
bitm.Save(@"c:\temp.jpg");
bitm.Dispose();
*************************************************
But it doesn't work (DrawToBimap seems to be not managed by the WebBrowser control).
How can I do to make these kind of thumbnails ? [PD] Theoretically you can try to play with WM_PRINT or WM_PRINTCLIENT message (create HDC and send it as a param of a message an then copy it to the graphics). I have done that with some controls and it works, unfortunately I don't have any sample code now. The second, much simpler but also a little bit less elegant idea is to do it this way: destinationGraphics.CopyFromScreen( webBrowser.PointToScreen(new Point(0, 0)), new Point(0, 0), webBrowser.Size);
Of course your control must be fully visible - if any window will cover it the capture will be corupt.
[PD] WM_PRINT is a windows message - you can send it to a window to ask it
to draw it's contents on the provided device context (hdc). You can create
hdc (i.e. by calling GetHdc of your Graphics class instance) and pass it
as a parameter to SendMessage, so that window will draw on your graphics.
Look hier for sample code (I have just found it so don't know if it works
but looks ok): http://tommycarlier.blogspot.com/200...cs-object.html
I'm not sure if this solution is good for your problem - probably there
are better ways to do that - look at this article, it looks valuable: http://www.developerfusion.co.uk/show/4712/
--
Piotr Dobrowolski Piotr.Dobrowolski@_usun_gmail.com
More generally, is there an opensource control that made this functionality
?
I found : websnapshot and dypswebcapture but you must paid to use them.
Any tools ?
"Piotr Dobrowolski" <Piotr.Dobrowolski@_usun_gmail.com> a écrit dans le
message de news: op***************@da-pdobrowolski.windtelecom.pl... Dnia 29-03-2006 o 20:32:46 Prosperz <pr***************@hotmail.com> napisal:
I never used WM_PRINT and I don't know how to use it. Can you be more precise ?
I would like to precise that I want to make a screenshot of an entire web page even if only a part is visible in the WebBrowser...
Maybe I must not use WebBroser to do that.
"Piotr Dobrowolski" <Piotr.Dobrowolski@_usun_gmail.com> a écrit dans le message de news: op***************@da-pdobrowolski.windtelecom.pl... Dnia 29-03-2006 o 19:18:40 Prosperz <pr***************@hotmail.com> napisa³:
Hi,
I would like to make thumbnails of web page by capture content of a WebBrowser. By example, capture http://www.google.com.
I used WebBrowser control with Framework 2.0.
I try this :
************************************************* WebBrowser w = (WebBrowser)sender;
Rectangle rec = w.Bounds;
Bitmap bitm = new Bitmap(rec.Width, rec.Height);
w.BringToFront();
w.DrawToBitmap(bitm, rec);
picScreenshot.Image = bitm;
bitm.Save(@"c:\temp.jpg");
bitm.Dispose();
*************************************************
But it doesn't work (DrawToBimap seems to be not managed by the WebBrowser control).
How can I do to make these kind of thumbnails ?
[PD] Theoretically you can try to play with WM_PRINT or WM_PRINTCLIENT message (create HDC and send it as a param of a message an then copy it to the graphics). I have done that with some controls and it works, unfortunately I don't have any sample code now. The second, much simpler but also a little bit less elegant idea is to do it this way: destinationGraphics.CopyFromScreen( webBrowser.PointToScreen(new Point(0, 0)), new Point(0, 0), webBrowser.Size);
Of course your control must be fully visible - if any window will cover it the capture will be corupt. [PD] WM_PRINT is a windows message - you can send it to a window to ask it to draw it's contents on the provided device context (hdc). You can create hdc (i.e. by calling GetHdc of your Graphics class instance) and pass it as a parameter to SendMessage, so that window will draw on your graphics. Look hier for sample code (I have just found it so don't know if it works but looks ok): http://tommycarlier.blogspot.com/200...cs-object.html
I'm not sure if this solution is good for your problem - probably there are better ways to do that - look at this article, it looks valuable: http://www.developerfusion.co.uk/show/4712/
-- Piotr Dobrowolski Piotr.Dobrowolski@_usun_gmail.com
I try the two methods, but it doesn't give me entire satisfaction.
I really would like to reproduce behavior of DrawToBitmap for a WebBrowser
Control...
How can I do that ?
"Prosperz" <pr***************@hotmail.com> a écrit dans le message de news:
44**********************@news.free.fr... More generally, is there an opensource control that made this functionality ?
I found : websnapshot and dypswebcapture but you must paid to use them.
Any tools ?
"Piotr Dobrowolski" <Piotr.Dobrowolski@_usun_gmail.com> a écrit dans le message de news: op***************@da-pdobrowolski.windtelecom.pl... Dnia 29-03-2006 o 20:32:46 Prosperz <pr***************@hotmail.com> napisal:
I never used WM_PRINT and I don't know how to use it. Can you be more precise ?
I would like to precise that I want to make a screenshot of an entire web page even if only a part is visible in the WebBrowser...
Maybe I must not use WebBroser to do that.
"Piotr Dobrowolski" <Piotr.Dobrowolski@_usun_gmail.com> a écrit dans le message de news: op***************@da-pdobrowolski.windtelecom.pl... Dnia 29-03-2006 o 19:18:40 Prosperz <pr***************@hotmail.com> napisa³:
> Hi, > > I would like to make thumbnails of web page by capture content of a > WebBrowser. By example, capture http://www.google.com. > > I used WebBrowser control with Framework 2.0. > > I try this : > > ************************************************* > WebBrowser w = (WebBrowser)sender; > > Rectangle rec = w.Bounds; > > Bitmap bitm = new Bitmap(rec.Width, rec.Height); > > w.BringToFront(); > > w.DrawToBitmap(bitm, rec); > > picScreenshot.Image = bitm; > > bitm.Save(@"c:\temp.jpg"); > > bitm.Dispose(); > > ************************************************* > > > But it doesn't work (DrawToBimap seems to be not managed by the > WebBrowser > control). > > How can I do to make these kind of thumbnails ? > [PD] Theoretically you can try to play with WM_PRINT or WM_PRINTCLIENT message (create HDC and send it as a param of a message an then copy it to the graphics). I have done that with some controls and it works, unfortunately I don't have any sample code now. The second, much simpler but also a little bit less elegant idea is to do it this way: destinationGraphics.CopyFromScreen( webBrowser.PointToScreen(new Point(0, 0)), new Point(0, 0), webBrowser.Size);
Of course your control must be fully visible - if any window will cover it the capture will be corupt. [PD] WM_PRINT is a windows message - you can send it to a window to ask it to draw it's contents on the provided device context (hdc). You can create hdc (i.e. by calling GetHdc of your Graphics class instance) and pass it as a parameter to SendMessage, so that window will draw on your graphics. Look hier for sample code (I have just found it so don't know if it works but looks ok): http://tommycarlier.blogspot.com/200...cs-object.html
I'm not sure if this solution is good for your problem - probably there are better ways to do that - look at this article, it looks valuable: http://www.developerfusion.co.uk/show/4712/
-- Piotr Dobrowolski Piotr.Dobrowolski@_usun_gmail.com
Dnia 30-03-2006 o 08:01:33 Prosperz <pr***************@hotmail.com>
napisał: I try the two methods, but it doesn't give me entire satisfaction.
I really would like to reproduce behavior of DrawToBitmap for a WebBrowser Control...
How can I do that ?
"Prosperz" <pr***************@hotmail.com> a écrit dans le message de news: 44**********************@news.free.fr... More generally, is there an opensource control that made this functionality ?
I found : websnapshot and dypswebcapture but you must paid to use them.
Any tools ?
"Piotr Dobrowolski" <Piotr.Dobrowolski@_usun_gmail.com> a écrit dans le message de news: op***************@da-pdobrowolski.windtelecom.pl... Dnia 29-03-2006 o 20:32:46 Prosperz <pr***************@hotmail.com> napisal:
I never used WM_PRINT and I don't know how to use it. Can you be more precise ?
I would like to precise that I want to make a screenshot of an entire web page even if only a part is visible in the WebBrowser...
Maybe I must not use WebBroser to do that.
"Piotr Dobrowolski" <Piotr.Dobrowolski@_usun_gmail.com> a écrit dans le message de news: op***************@da-pdobrowolski.windtelecom.pl... > Dnia 29-03-2006 o 19:18:40 Prosperz <pr***************@hotmail.com> > napisa³: > >> Hi, >> >> I would like to make thumbnails of web page by capture content of a >> WebBrowser. By example, capture http://www.google.com. >> >> I used WebBrowser control with Framework 2.0. >> >> I try this : >> >> ************************************************* >> WebBrowser w = (WebBrowser)sender; >> >> Rectangle rec = w.Bounds; >> >> Bitmap bitm = new Bitmap(rec.Width, rec.Height); >> >> w.BringToFront(); >> >> w.DrawToBitmap(bitm, rec); >> >> picScreenshot.Image = bitm; >> >> bitm.Save(@"c:\temp.jpg"); >> >> bitm.Dispose(); >> >> ************************************************* >> >> >> But it doesn't work (DrawToBimap seems to be not managed by the >> WebBrowser >> control). >> >> How can I do to make these kind of thumbnails ? >> > [PD] Theoretically you can try to play with WM_PRINT or > WM_PRINTCLIENT > message (create HDC and send it as a param of a message an then copy > it > to > the graphics). I have done that with some controls and it works, > unfortunately I don't have any sample code now. The second, much > simpler > but also a little bit less elegant idea is to do it this way: > destinationGraphics.CopyFromScreen( > webBrowser.PointToScreen(new Point(0, 0)), > new Point(0, 0), webBrowser.Size); > > Of course your control must be fully visible - if any window will > cover > it > the capture will be corupt. > [PD] WM_PRINT is a windows message - you can send it to a window to ask it to draw it's contents on the provided device context (hdc). You can create hdc (i.e. by calling GetHdc of your Graphics class instance) and pass it as a parameter to SendMessage, so that window will draw on your graphics. Look hier for sample code (I have just found it so don't know if it works but looks ok): http://tommycarlier.blogspot.com/200...cs-object.html
I'm not sure if this solution is good for your problem - probably there are better ways to do that - look at this article, it looks valuable: http://www.developerfusion.co.uk/show/4712/
[PD] Can you describe what problems do you have with solutions I have
posted above? The second one looks like it should work (I haven't tested
it but the code looks OK).
--
Piotr Dobrowolski Piotr.Dobrowolski@_usun_gmail.com
The second method generate an cast exception on IHTMLElementRender render =
(IHTMLElementRender) element;
Moreover, it is not based on WebBrowser Control within framework 2.0.
The first method doesn't work. It seems WebBrowser doesn't managed
WM_PRINT...
"Piotr Dobrowolski" <Piotr.Dobrowolski@_usun_gmail.com> a écrit dans le
message de news: op***************@da-pdobrowolski.windtelecom.pl... Dnia 30-03-2006 o 08:01:33 Prosperz <pr***************@hotmail.com> napisal:
I try the two methods, but it doesn't give me entire satisfaction.
I really would like to reproduce behavior of DrawToBitmap for a WebBrowser Control...
How can I do that ?
"Prosperz" <pr***************@hotmail.com> a écrit dans le message de news: 44**********************@news.free.fr... More generally, is there an opensource control that made this functionality ?
I found : websnapshot and dypswebcapture but you must paid to use them.
Any tools ?
"Piotr Dobrowolski" <Piotr.Dobrowolski@_usun_gmail.com> a écrit dans le message de news: op***************@da-pdobrowolski.windtelecom.pl... Dnia 29-03-2006 o 20:32:46 Prosperz <pr***************@hotmail.com> napisal:
> I never used WM_PRINT and I don't know how to use it. Can you be more > precise ? > > I would like to precise that I want to make a screenshot of an entire > web > page even if only a part is visible in the WebBrowser... > > Maybe I must not use WebBroser to do that. > > "Piotr Dobrowolski" <Piotr.Dobrowolski@_usun_gmail.com> a écrit dans > le > message de news: op***************@da-pdobrowolski.windtelecom.pl... >> Dnia 29-03-2006 o 19:18:40 Prosperz <pr***************@hotmail.com> >> napisa³: >> >>> Hi, >>> >>> I would like to make thumbnails of web page by capture content of a >>> WebBrowser. By example, capture http://www.google.com. >>> >>> I used WebBrowser control with Framework 2.0. >>> >>> I try this : >>> >>> ************************************************* >>> WebBrowser w = (WebBrowser)sender; >>> >>> Rectangle rec = w.Bounds; >>> >>> Bitmap bitm = new Bitmap(rec.Width, rec.Height); >>> >>> w.BringToFront(); >>> >>> w.DrawToBitmap(bitm, rec); >>> >>> picScreenshot.Image = bitm; >>> >>> bitm.Save(@"c:\temp.jpg"); >>> >>> bitm.Dispose(); >>> >>> ************************************************* >>> >>> >>> But it doesn't work (DrawToBimap seems to be not managed by the >>> WebBrowser >>> control). >>> >>> How can I do to make these kind of thumbnails ? >>> >> [PD] Theoretically you can try to play with WM_PRINT or >> WM_PRINTCLIENT >> message (create HDC and send it as a param of a message an then copy >> it >> to >> the graphics). I have done that with some controls and it works, >> unfortunately I don't have any sample code now. The second, much >> simpler >> but also a little bit less elegant idea is to do it this way: >> destinationGraphics.CopyFromScreen( >> webBrowser.PointToScreen(new Point(0, 0)), >> new Point(0, 0), webBrowser.Size); >> >> Of course your control must be fully visible - if any window will >> cover >> it >> the capture will be corupt. >> [PD] WM_PRINT is a windows message - you can send it to a window to ask it to draw it's contents on the provided device context (hdc). You can create hdc (i.e. by calling GetHdc of your Graphics class instance) and pass it as a parameter to SendMessage, so that window will draw on your graphics. Look hier for sample code (I have just found it so don't know if it works but looks ok): http://tommycarlier.blogspot.com/200...cs-object.html
I'm not sure if this solution is good for your problem - probably there are better ways to do that - look at this article, it looks valuable: http://www.developerfusion.co.uk/show/4712/
[PD] Can you describe what problems do you have with solutions I have posted above? The second one looks like it should work (I haven't tested it but the code looks OK).
-- Piotr Dobrowolski Piotr.Dobrowolski@_usun_gmail.com
Dnia 30-03-2006 o 19:26:00 Prosperz <pr***************@hotmail.com>
napisał: The second method generate an cast exception on IHTMLElementRender render = (IHTMLElementRender) element; Moreover, it is not based on WebBrowser Control within framework 2.0.
[PD] Yes, this solution is based on ActiveX browser control. But you can
also access unmanaged interfaces of document using
webBrowser.Document.DomDocument property. You can cast it to
IHTMLDocument2 just like in this article and move on. The first method doesn't work. It seems WebBrowser doesn't managed WM_PRINT...
"Piotr Dobrowolski" <Piotr.Dobrowolski@_usun_gmail.com> a écrit dans le message de news: op***************@da-pdobrowolski.windtelecom.pl... Dnia 30-03-2006 o 08:01:33 Prosperz <pr***************@hotmail.com> napisal:
I try the two methods, but it doesn't give me entire satisfaction.
I really would like to reproduce behavior of DrawToBitmap for a WebBrowser Control...
How can I do that ?
"Prosperz" <pr***************@hotmail.com> a écrit dans le message de news: 44**********************@news.free.fr... More generally, is there an opensource control that made this functionality ?
I found : websnapshot and dypswebcapture but you must paid to use them.
Any tools ?
"Piotr Dobrowolski" <Piotr.Dobrowolski@_usun_gmail.com> a écrit dans le message de news: op***************@da-pdobrowolski.windtelecom.pl... > Dnia 29-03-2006 o 20:32:46 Prosperz <pr***************@hotmail.com> > napisal: > >> I never used WM_PRINT and I don't know how to use it. Can you be >> more >> precise ? >> >> I would like to precise that I want to make a screenshot of an >> entire >> web >> page even if only a part is visible in the WebBrowser... >> >> Maybe I must not use WebBroser to do that. >> >> "Piotr Dobrowolski" <Piotr.Dobrowolski@_usun_gmail.com> a écrit dans >> le >> message de news: op***************@da-pdobrowolski.windtelecom.pl... >>> Dnia 29-03-2006 o 19:18:40 Prosperz <pr***************@hotmail.com> >>> napisa³: >>> >>>> Hi, >>>> >>>> I would like to make thumbnails of web page by capture content of >>>> a >>>> WebBrowser. By example, capture http://www.google.com. >>>> >>>> I used WebBrowser control with Framework 2.0. >>>> >>>> I try this : >>>> >>>> ************************************************* >>>> WebBrowser w = (WebBrowser)sender; >>>> >>>> Rectangle rec = w.Bounds; >>>> >>>> Bitmap bitm = new Bitmap(rec.Width, rec.Height); >>>> >>>> w.BringToFront(); >>>> >>>> w.DrawToBitmap(bitm, rec); >>>> >>>> picScreenshot.Image = bitm; >>>> >>>> bitm.Save(@"c:\temp.jpg"); >>>> >>>> bitm.Dispose(); >>>> >>>> ************************************************* >>>> >>>> >>>> But it doesn't work (DrawToBimap seems to be not managed by the >>>> WebBrowser >>>> control). >>>> >>>> How can I do to make these kind of thumbnails ? >>>> >>> [PD] Theoretically you can try to play with WM_PRINT or >>> WM_PRINTCLIENT >>> message (create HDC and send it as a param of a message an then >>> copy >>> it >>> to >>> the graphics). I have done that with some controls and it works, >>> unfortunately I don't have any sample code now. The second, much >>> simpler >>> but also a little bit less elegant idea is to do it this way: >>> destinationGraphics.CopyFromScreen( >>> webBrowser.PointToScreen(new Point(0, 0)), >>> new Point(0, 0), webBrowser.Size); >>> >>> Of course your control must be fully visible - if any window will >>> cover >>> it >>> the capture will be corupt. >>> > [PD] WM_PRINT is a windows message - you can send it to a window to > ask > it to draw it's contents on the provided device context (hdc). You > can > create hdc (i.e. by calling GetHdc of your Graphics class instance) > and > pass it as a parameter to SendMessage, so that window will draw on > your > graphics. Look hier for sample code (I have just found it so don't > know > if it works but looks ok): > http://tommycarlier.blogspot.com/200...cs-object.html > > I'm not sure if this solution is good for your problem - probably > there > are better ways to do that - look at this article, it looks valuable: > http://www.developerfusion.co.uk/show/4712/ >
[PD] Can you describe what problems do you have with solutions I have posted above? The second one looks like it should work (I haven't tested it but the code looks OK).
-- Piotr Dobrowolski Piotr.Dobrowolski@_usun_gmail.com
--
Piotr Dobrowolski Piotr.Dobrowolski@_usun_gmail.com This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: Mike |
last post by:
Sites using thumbnail preview for world wide web file navigation and
searching.
Below are list of sites that are either researching or providing thumbnail
preview images for online web...
|
by: Max Quordlepleen |
last post by:
Apologies for the crossposting, I wasn't sure which of these groups to
ask this in.
I have been lurking in these groups for a week or so, trying to glean
what I need to design a simple, clean...
|
by: Johnny |
last post by:
Hello,
I am looking for someone to guide me in the right direction. What I want to
do is take a "screenshot" of a web page programatically as IE sees it, using
C#?
I had previosuly used the...
|
by: ask josephsen |
last post by:
Hi NewsGroup
Hope you can help me with this. I'm using the
"System.Windows.Forms.WebBrowser" to display a various markuplanguage. And
it works fine pointing the "WebBrowser.Url" to a local or...
|
by: daveW |
last post by:
Hi,
I've been messing around with a personal website for a while now, and
having totally bust my leg skiing have been google-wacking to work out
how to use these funky stylesheet things. After...
|
by: Alex Clark |
last post by:
Greetings,
(.NET 2.0, WinXP Pro/Server 2003, IE6 with latest service packs).
I've decided to take advantage of the layout characteristics of HTML
documents to simplify my printing tasks, but...
|
by: Ben |
last post by:
Hi all,
I am trying to write a little app that will generate a thumbnail image
of a website. Having searched the web I have found various bits of code
that appear to do the job and have written...
|
by: John Henckel |
last post by:
This is the simplest, quickest, dirtiest, leanest, meanest,
thumbnail/slideshow image viewer PHP script I have ever seen.
Enjoy, John
--------- CUT HERE -------------------
<?php
|
by: Robson Siqueira |
last post by:
Folks,
I am facing a problem. I am trying to manipulate the HTML data (thru the
Document and DocumentText properties) of the WebBrowser object
(System.Windows.Forms).
The problem is that the...
|
by: Kemmylinns12 |
last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and efficiency. While initially associated with cryptocurrencies...
|
by: Naresh1 |
last post by:
What is WebLogic Admin Training?
WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge required to effectively administer and manage Oracle...
|
by: WisdomUfot |
last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific technical details, Gmail likely implements measures...
|
by: Oralloy |
last post by:
Hello Folks,
I am trying to hook up a CPU which I designed using SystemC to I/O pins on an FPGA.
My problem (spelled failure) is with the synthesis of my design into a bitstream, not the C++...
|
by: Carina712 |
last post by:
Setting background colors for Excel documents can help to improve the visual appeal of the document and make it easier to read and understand. Background colors can be used to highlight important...
|
by: BLUEPANDA |
last post by:
At BluePanda Dev, we're passionate about building high-quality software and sharing our knowledge with the community. That's why we've created a SaaS starter kit that's not only easy to use but also...
|
by: Rahul1995seven |
last post by:
Introduction:
In the realm of programming languages, Python has emerged as a powerhouse. With its simplicity, versatility, and robustness, Python has gained popularity among beginners and experts...
|
by: Ricardo de Mila |
last post by:
Dear people, good afternoon...
I have a form in msAccess with lots of controls and a specific routine must be triggered if the mouse_down event happens in any control.
Than I need to discover what...
|
by: ezappsrUS |
last post by:
Hi,
I wonder if someone knows where I am going wrong below. I have a continuous form and two labels where only one would be visible depending on the checkbox being checked or not. Below is the...
| |