<?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 : Problem with the Webbrowser Control</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Controls : Problem with the Webbrowser Control]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 13 May 2026 10:52:52 +0000</pubDate>
  <lastBuildDate>Fri, 18 Mar 2011 08:52:08 +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=18069</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[Problem with the Webbrowser Control : Hello oleg,thanks for help, it...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=18069&amp;PID=63379&amp;title=problem-with-the-webbrowser-control#63379</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6664">ProScan</a><br /><strong>Subject:</strong> 18069<br /><strong>Posted:</strong> 18 March 2011 at 8:52am<br /><br />Hello oleg,<br>thanks for help, it work's !<br><br>Proscan <br>]]>
   </description>
   <pubDate>Fri, 18 Mar 2011 08:52:08 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=18069&amp;PID=63379&amp;title=problem-with-the-webbrowser-control#63379</guid>
  </item> 
  <item>
   <title><![CDATA[Problem with the Webbrowser Control : Use Application property in both...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=18069&amp;PID=63377&amp;title=problem-with-the-webbrowser-control#63377</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 18069<br /><strong>Posted:</strong> 18 March 2011 at 8:43am<br /><br />Use Application property in both cases<div><br></div><div><div>Private Sub WebBrowser2_DocumentComplete(ByVal pDisp As Object, URL As Variant)</div><div><br></div><div>&nbsp;&nbsp; &nbsp;If (pDisp Is WebBrowser2.Application) Then</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;If InStr(1, URL, "testsite.html") &gt; 0 Then</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;MsgBox "Site comlete !"</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;End If</div><div>&nbsp;&nbsp; &nbsp;End If</div><div><br></div><div>&nbsp;&nbsp; &nbsp;'- WORKS PERFECT -</div><div><br></div><div>End Sub</div></div><div><br></div>]]>
   </description>
   <pubDate>Fri, 18 Mar 2011 08:43:34 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=18069&amp;PID=63377&amp;title=problem-with-the-webbrowser-control#63377</guid>
  </item> 
  <item>
   <title><![CDATA[Problem with the Webbrowser Control : Hello...I have 2 Forms for a simple...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=18069&amp;PID=63376&amp;title=problem-with-the-webbrowser-control#63376</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6664">ProScan</a><br /><strong>Subject:</strong> 18069<br /><strong>Posted:</strong> 18 March 2011 at 7:49am<br /><br />Hello...<br><br>I have 2 Forms for a simple Test..<br><br>Form1: works with the MS Browser Control shdocvw.dll<br>Form2: works with the Codejock Browser Control<br><br>When i start then Form1, i load a simpe Website with Frames.<br>in the DocumentComplete event i have the pDisp Object to look, is the<br>Framewebsite complete for load.<br><br>Form1: with MS Browser<br><br>Private Sub Browser_DocumentComplete(ByVal pDisp As Object, URL As Variant)<br><br>&nbsp;&nbsp;&nbsp; If (pDisp Is Browser.Object) Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If InStr(1, URL, "testsite.html") &gt; 0 Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MsgBox "Site comlete !<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End If<br>&nbsp;&nbsp;&nbsp; End If<br><br>&nbsp;&nbsp;&nbsp; '- WORKS PERFECT -<br><br>End Sub<br><br><br>&nbsp;&nbsp; <br>Form2: with Codejock Browser<br><br>Private Sub Browser_DocumentComplete(ByVal pDisp As Object, URL As Variant)<br><br>&nbsp;&nbsp;&nbsp;&nbsp; If (pDisp Is Browser.Object) Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If InStr(1, URL, "testsite.html") &gt; 0 Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MsgBox "Site comlete !<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End If<br>&nbsp;&nbsp;&nbsp; End If<br><br>&nbsp;&nbsp; '- Works not !!!! -&gt; The pDisp Object is not the Browser.Object<br><br>End Sub<br><br>with this routine and the codejock Browser i can't check a special site..<br><br>any idears ???<br><br>Greetings<br><br>ProScan<br><br>]]>
   </description>
   <pubDate>Fri, 18 Mar 2011 07:49:33 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=18069&amp;PID=63376&amp;title=problem-with-the-webbrowser-control#63376</guid>
  </item> 
 </channel>
</rss>