<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Codejock Developer Community : Capturing an image of a webpage ?</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : General Discussion : Capturing an image of a webpage ?]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 13 May 2026 21:43:21 +0000</pubDate>
  <lastBuildDate>Fri, 03 Oct 2008 03:23:52 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.04</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>forum.codejock.com/RSS_post_feed.asp?TID=12313</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Codejock Developer Community]]></title>
   <url>http://forum.codejock.com/forum_images/codejock-logo.gif</url>
   <link>http://forum.codejock.com/</link>
  </image>
  <item>
   <title><![CDATA[Capturing an image of a webpage ? : Mr Den : Thank you, but if the...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=12313&amp;PID=41610&amp;title=capturing-an-image-of-a-webpage#41610</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4049">Lodep59</a><br /><strong>Subject:</strong> 12313<br /><strong>Posted:</strong> 03 October 2008 at 3:23am<br /><br />Mr Den : Thank you, but if the webpage is very long the screenshot will not take all the web page.<DIV>&nbsp;</DIV><DIV>Oleg : I'll try but don't think it's possible, C# to VB6 is a very hard conversion :( Perhaps you can add this functionnality to your web browser control ?</DIV><DIV>&nbsp;</DIV><DIV>Thank you for all !</DIV>]]>
   </description>
   <pubDate>Fri, 03 Oct 2008 03:23:52 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=12313&amp;PID=41610&amp;title=capturing-an-image-of-a-webpage#41610</guid>
  </item> 
  <item>
   <title><![CDATA[Capturing an image of a webpage ? : Hi, try convert this project...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=12313&amp;PID=41609&amp;title=capturing-an-image-of-a-webpage#41609</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 12313<br /><strong>Posted:</strong> 03 October 2008 at 1:57am<br /><br /><P>Hi,</P><DIV>try convert this project from C# to VB - <a href="http://www.codeproject.com/KB/graphics/IECapture.aspx" target="_blank">http://www.codeproject.com/KB/graphics/IECapture.aspx</A></DIV>]]>
   </description>
   <pubDate>Fri, 03 Oct 2008 01:57:14 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=12313&amp;PID=41609&amp;title=capturing-an-image-of-a-webpage#41609</guid>
  </item> 
  <item>
   <title><![CDATA[Capturing an image of a webpage ? : To do a screenshot in VB6, I use...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=12313&amp;PID=41598&amp;title=capturing-an-image-of-a-webpage#41598</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3253">Mr.Den</a><br /><strong>Subject:</strong> 12313<br /><strong>Posted:</strong> 02 October 2008 at 11:53am<br /><br /><DIV>To do a screenshot in VB6, I use a Pegasus activex control for the picture container, but you should be able to change the code to use a picturebox:</DIV><DIV>&nbsp;</DIV><DIV>Put this code in the declarations of a form</DIV><P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'print screen<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Private Declare Sub keybd_event Lib "user32" (ByVal bVk As Byte, _<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ByVal bScan As Byte, ByVal dwFlags As Long, ByVal dwExtraInfo As Long)</P><DIV>Put this code in a sub:</DIV><DIV>&nbsp;</DIV><DIV><DIV></DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'call the Windows keybd_event sub, passing the built-in<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'VB keyboard constant vbKeySnapshot (44) to the sub.<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'The four parameters for keybd_event are:<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'BYTE bVk&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'virtual-key code<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'BYTE bScan&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'hardware scan code<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'DWORD dwFlags&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'flags specifying various function options<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'DWORD dwExtraInfo&nbsp; 'additional data associated with keystroke<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'The second parameter (bScan) determines what<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'to copy... passing 0&amp; copies the screen or<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'passing 1&amp; copies the active form.</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; keybd_event vbKeySnapshot, 0&amp;, 0&amp;, 0&amp;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'pause to let Windows update the clipboard<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DoEvents<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'retrieve the clipboard bitmap to the control<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; obPix.Picture = Clipboard.GetData(vbCFBitmap)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; obPix.SaveFileType = 8<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; obPix.SaveJPGChromFactor = 12&nbsp;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; obPix.SaveJPGLumFactor = 15&nbsp;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; obPix.SaveJPGSubSampling = SS_111<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; obPix.SaveFileName = "C:\Test.jpg"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; obPix.SaveFile</DIV>]]>
   </description>
   <pubDate>Thu, 02 Oct 2008 11:53:01 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=12313&amp;PID=41598&amp;title=capturing-an-image-of-a-webpage#41598</guid>
  </item> 
  <item>
   <title><![CDATA[Capturing an image of a webpage ? :   oleg wrote: google + &amp;#034;Screenshot...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=12313&amp;PID=41584&amp;title=capturing-an-image-of-a-webpage#41584</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4049">Lodep59</a><br /><strong>Subject:</strong> 12313<br /><strong>Posted:</strong> 02 October 2008 at 4:27am<br /><br /><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Originally posted by oleg" alt="Originally posted by oleg" style="vertical-align: text-bottom;" /> <strong>oleg wrote:</strong><br /><br /><P>google + "Screenshot of Web Page in VB" will help.</P></td></tr></table> <DIV>&nbsp;</DIV><DIV>Already done that dear Oleg.</DIV><DIV>But all i've found is for asp.net ou .net in general, not for VB6...</DIV>]]>
   </description>
   <pubDate>Thu, 02 Oct 2008 04:27:45 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=12313&amp;PID=41584&amp;title=capturing-an-image-of-a-webpage#41584</guid>
  </item> 
  <item>
   <title><![CDATA[Capturing an image of a webpage ? : google + &amp;#034;Screenshot of Web...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=12313&amp;PID=41582&amp;title=capturing-an-image-of-a-webpage#41582</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 12313<br /><strong>Posted:</strong> 02 October 2008 at 4:11am<br /><br /><P>google + "Screenshot of Web Page in VB" will help.</P>]]>
   </description>
   <pubDate>Thu, 02 Oct 2008 04:11:56 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=12313&amp;PID=41582&amp;title=capturing-an-image-of-a-webpage#41582</guid>
  </item> 
  <item>
   <title><![CDATA[Capturing an image of a webpage ? : Hello,  Did someone know how...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=12313&amp;PID=41575&amp;title=capturing-an-image-of-a-webpage#41575</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4049">Lodep59</a><br /><strong>Subject:</strong> 12313<br /><strong>Posted:</strong> 02 October 2008 at 2:30am<br /><br />Hello,<DIV>&nbsp;</DIV><DIV>Did someone know how to create an image of a webpage from a webbrowser (Ms or Cj) ?</DIV><DIV>&nbsp;</DIV><DIV>I try to create a thumbnail of a webpage shown in a WB but no way for the moment...</DIV><DIV>&nbsp;</DIV><DIV>Any idea ?</DIV>]]>
   </description>
   <pubDate>Thu, 02 Oct 2008 02:30:27 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=12313&amp;PID=41575&amp;title=capturing-an-image-of-a-webpage#41575</guid>
  </item> 
 </channel>
</rss>