<?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 : drawing line in Picturebox on Dockingpane</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Docking Pane : drawing line in Picturebox on Dockingpane]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sat, 30 May 2026 23:09:05 +0000</pubDate>
  <lastBuildDate>Fri, 13 Jan 2012 11:12:54 +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=19405</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[drawing line in Picturebox on Dockingpane :   Hi,it works now, thank you...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=19405&amp;PID=67419&amp;title=drawing-line-in-picturebox-on-dockingpane#67419</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=7277">ruschmeier@truncad.d</a><br /><strong>Subject:</strong> 19405<br /><strong>Posted:</strong> 13 January 2012 at 11:12am<br /><br />Hi,<div>&nbsp;</div><div>it works now, thank you very much!</div><div>&nbsp;</div><div>Regards,</div><div>Frank</div>]]>
   </description>
   <pubDate>Fri, 13 Jan 2012 11:12:54 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=19405&amp;PID=67419&amp;title=drawing-line-in-picturebox-on-dockingpane#67419</guid>
  </item> 
  <item>
   <title><![CDATA[drawing line in Picturebox on Dockingpane : Use the handle to the picturebox...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=19405&amp;PID=67416&amp;title=drawing-line-in-picturebox-on-dockingpane#67416</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=369">SuperMario</a><br /><strong>Subject:</strong> 19405<br /><strong>Posted:</strong> 13 January 2012 at 11:04am<br /><br />Use the handle to the picturebox you attached. &nbsp;where is your attach event code? &nbsp;whatever you used there should be the handle you use.]]>
   </description>
   <pubDate>Fri, 13 Jan 2012 11:04:32 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=19405&amp;PID=67416&amp;title=drawing-line-in-picturebox-on-dockingpane#67416</guid>
  </item> 
  <item>
   <title><![CDATA[drawing line in Picturebox on Dockingpane :   Hi once more,I am using Dockingpanes...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=19405&amp;PID=67413&amp;title=drawing-line-in-picturebox-on-dockingpane#67413</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=7277">ruschmeier@truncad.d</a><br /><strong>Subject:</strong> 19405<br /><strong>Posted:</strong> 13 January 2012 at 5:03am<br /><br />Hi once more,<div>&nbsp;</div><div>I am using Dockingpanes and in each dockingpane I have picturebox. I cannot draw anything on the picturebox. In fact I cannot get contact to the picturebox at all. How do I do that?</div><div>&nbsp;</div><div>This is the code I use to create the dockingpane, could someone insert the code to contact the picturebox?</div><div>&nbsp;</div><div>*****************************</div><div>&nbsp;</div><div>Private Sub DockingPaneManager_GetClientBordersWidth(Left As Long, Top As Long, Right As Long, Bottom As Long)<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; CommandBars.GetClientRect Left, Top, Right, Bottom</div><div>End Sub</div><div>Private Sub DockingPaneManager_Resize()<br>&nbsp;&nbsp;&nbsp; On Error Resume Next<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; Dim Left As Long<br>&nbsp;&nbsp;&nbsp; Dim Top As Long<br>&nbsp;&nbsp;&nbsp; Dim Right As Long<br>&nbsp;&nbsp;&nbsp; Dim Bottom As Long<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; DockingPaneManager.GetClientRect Left, Top, Right, Bottom<br>&nbsp;&nbsp;&nbsp; DockingPaneManager.RedrawPanes<br>&nbsp;&nbsp;&nbsp; <font color="#ff3366">Here I would like to draw the line -------.Line (0, 0)-(1000, 1000), RGB(0, 0, 0)</font></div><div>End Sub</div><div>&nbsp;</div><div>Private Sub DockeingPaneInit()<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; Dim dpViewer As frmViewer<br>&nbsp;&nbsp;&nbsp; Dim dpKorpusFront As frmKorpusFront<br>&nbsp;&nbsp;&nbsp; Dim dpKorpusOben As frmKorpusOben<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; Set dpViewer = New frmViewer<br>&nbsp;&nbsp;&nbsp; Set dpKorpusFront = New frmKorpusFront<br>&nbsp;&nbsp;&nbsp; Set dpKorpusOben = New frmKorpusOben<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; Dim A As XtremeDockingPane.Pane<br>&nbsp;&nbsp;&nbsp; Dim b As XtremeDockingPane.Pane<br>&nbsp;&nbsp;&nbsp; Dim c As XtremeDockingPane.Pane</div><div>&nbsp;&nbsp;&nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp; Set A = DockingPaneManager.CreatePane(1, 1000, 520, DockRightOf)<br>&nbsp;&nbsp;&nbsp; A.Title = "3D"<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; Set b = DockingPaneManager.CreatePane(2, 5000, 120, DockLeftOf)<br>&nbsp;&nbsp;&nbsp; b.Title = "Frontansicht"<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; Set c = DockingPaneManager.CreatePane(3, 320, 200, DockTopOf, b)<br>&nbsp;&nbsp;&nbsp; c.Title = "Draufsicht"<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; A.Handle = dpViewer.hwnd<br>&nbsp;&nbsp;&nbsp; b.Handle = dpKorpusFront.hwnd<br>&nbsp;&nbsp;&nbsp; c.Handle = dpKorpusOben.hwnd<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp; DockingPaneManager.options.HideClient = Not DockingPaneManager.options.HideClient<br>&nbsp;&nbsp;&nbsp; <br>End Sub</div><div>&nbsp;</div><div>***************************************</div><div>&nbsp;</div><div>Thanks,</div><div>Frank</div>]]>
   </description>
   <pubDate>Fri, 13 Jan 2012 05:03:29 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=19405&amp;PID=67413&amp;title=drawing-line-in-picturebox-on-dockingpane#67413</guid>
  </item> 
 </channel>
</rss>