472,378 Members | 1,465 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,378 software developers and data experts.

Thumbnail of WebBrowser content

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+
Mar 29 '06 #1
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
Mar 29 '06 #2
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

Mar 29 '06 #3
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
Mar 29 '06 #4
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

Mar 29 '06 #5
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


Mar 30 '06 #6
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
Mar 30 '06 #7
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

Mar 30 '06 #8
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
Apr 1 '06 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
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...
54
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...
1
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...
5
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...
0
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...
12
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...
0
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...
1
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
4
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...
2
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...
0
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...
0
hi
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...
0
Oralloy
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++...
0
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...
0
BLUEPANDA
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...
0
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...
2
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...
1
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...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.