<?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 : how to configure a connection in runtime</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Suite Pro : how to configure a connection in runtime]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Mon, 20 Apr 2026 11:57:43 +0000</pubDate>
  <lastBuildDate>Wed, 27 Dec 2017 10:53:47 +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=23525</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[how to configure a connection in runtime : Ok, thank you ]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=23525&amp;PID=76444&amp;title=how-to-configure-a-connection-in-runtime#76444</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=9224">Rui</a><br /><strong>Subject:</strong> 23525<br /><strong>Posted:</strong> 27 December 2017 at 10:53am<br /><br />Ok, thank you]]>
   </description>
   <pubDate>Wed, 27 Dec 2017 10:53:47 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=23525&amp;PID=76444&amp;title=how-to-configure-a-connection-in-runtime#76444</guid>
  </item> 
  <item>
   <title><![CDATA[how to configure a connection in runtime : Object of line still the same,...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=23525&amp;PID=76443&amp;title=how-to-configure-a-connection-in-runtime#76443</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=8730">olebed</a><br /><strong>Subject:</strong> 23525<br /><strong>Posted:</strong> 23 December 2017 at 1:39pm<br /><br />Object of line still the same, you just change its style. So you can get it in the same way as before.<br><br>If you want to <b>break </b>straight line by code (not with mouse) - It isn't possible in ActiveX version.]]>
   </description>
   <pubDate>Sat, 23 Dec 2017 13:39:05 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=23525&amp;PID=76443&amp;title=how-to-configure-a-connection-in-runtime#76443</guid>
  </item> 
  <item>
   <title><![CDATA[how to configure a connection in runtime : It was really useful your answer,...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=23525&amp;PID=76442&amp;title=how-to-configure-a-connection-in-runtime#76442</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=9224">Rui</a><br /><strong>Subject:</strong> 23525<br /><strong>Posted:</strong> 23 December 2017 at 1:13pm<br /><br />It was really useful your answer, thank you, but i have one more question.<br />After i change a straight line to a elbow line in run time how can i access in code to the new elbow line properties ?]]>
   </description>
   <pubDate>Sat, 23 Dec 2017 13:13:16 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=23525&amp;PID=76442&amp;title=how-to-configure-a-connection-in-runtime#76442</guid>
  </item> 
  <item>
   <title><![CDATA[how to configure a connection in runtime :  Dim connType As FlowGraphConnectorTypePrivate...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=23525&amp;PID=76441&amp;title=how-to-configure-a-connection-in-runtime#76441</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=8730">olebed</a><br /><strong>Subject:</strong> 23525<br /><strong>Posted:</strong> 21 December 2017 at 7:43pm<br /><br /><img src="uploads/8730/2017-12-22_02-39-19.gif" height="418" width="724" border="0" /><br><br><table width="99%"><tr><td><pre class="BBcode">Dim connType As FlowGraphConnectorType<div><br></div><div>Private Sub mnuSelectAll_Click()</div><div>&nbsp; &nbsp; 'FlowGraph.SelectAll</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; connType = connType + 1</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; If connType &gt; xtpFlowGraphConnectorElbowDoubleArrow Then</div><div>&nbsp; &nbsp; &nbsp; &nbsp; connType = xtpFlowGraphConnectorStraight</div><div>&nbsp; &nbsp; End If</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; Dim Page As FlowGraphPage</div><div>&nbsp; &nbsp; Set Page = FlowGraph.ActivePage</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; Dim pConnection As FlowGraphConnection</div><div>&nbsp; &nbsp; Dim i As Integer</div><div>&nbsp; &nbsp; For i = 0 To Page.Connections.Count - 1</div><div>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; Set pConnection = Page.Connections.Connection(i)</div><div>&nbsp; &nbsp; &nbsp; &nbsp;<b> pConnection.Style = connType</b></div><div>&nbsp; &nbsp; Next i</div>End Sub</pre></td></tr></table><br>]]>
   </description>
   <pubDate>Thu, 21 Dec 2017 19:43:56 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=23525&amp;PID=76441&amp;title=how-to-configure-a-connection-in-runtime#76441</guid>
  </item> 
  <item>
   <title><![CDATA[how to configure a connection in runtime : For testing I have added my code...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=23525&amp;PID=76437&amp;title=how-to-configure-a-connection-in-runtime#76437</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=8730">olebed</a><br /><strong>Subject:</strong> 23525<br /><strong>Posted:</strong> 20 December 2017 at 3:42pm<br /><br />For testing I have added my code in SelectAll menu item handler. So when I press in run time SelectAll then appropriate connection line change style to CurvedArrow.<br />You can save pointer to desired connection or search it by name, or get it by ID and then set new style.]]>
   </description>
   <pubDate>Wed, 20 Dec 2017 15:42:37 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=23525&amp;PID=76437&amp;title=how-to-configure-a-connection-in-runtime#76437</guid>
  </item> 
  <item>
   <title><![CDATA[how to configure a connection in runtime : Maybe i didn&amp;#039;t explain very...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=23525&amp;PID=76436&amp;title=how-to-configure-a-connection-in-runtime#76436</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=9224">Rui</a><br /><strong>Subject:</strong> 23525<br /><strong>Posted:</strong> 20 December 2017 at 2:34pm<br /><br />Maybe i didn't explain very well, I know how to make a connection in run time what i don't know is to make a connection like line like (see image) between node "test2" and "test3"  or "test2 and "test4". At design time it's easy to change but in run time how i can do it like that ? It's a connection line but actually are two lines.<br /><br /><br /><br /><img src="uploads/9224/86.jpg" border="0" />]]>
   </description>
   <pubDate>Wed, 20 Dec 2017 14:34:15 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=23525&amp;PID=76436&amp;title=how-to-configure-a-connection-in-runtime#76436</guid>
  </item> 
  <item>
   <title><![CDATA[how to configure a connection in runtime :  Set pConnection = Page.Conne...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=23525&amp;PID=76428&amp;title=how-to-configure-a-connection-in-runtime#76428</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=8730">olebed</a><br /><strong>Subject:</strong> 23525<br /><strong>Posted:</strong> 19 December 2017 at 12:29pm<br /><br /><table width="99%"><tr><td><pre class="BBcode">Set pConnection = Page.Connections.Connection(0)<br><b>pConnection.Style</b> = xtpFlowGraphConnectorCurvedArrow</pre></td></tr></table>]]>
   </description>
   <pubDate>Tue, 19 Dec 2017 12:29:29 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=23525&amp;PID=76428&amp;title=how-to-configure-a-connection-in-runtime#76428</guid>
  </item> 
  <item>
   <title><![CDATA[how to configure a connection in runtime : How can i in run time configure...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=23525&amp;PID=76418&amp;title=how-to-configure-a-connection-in-runtime#76418</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=9224">Rui</a><br /><strong>Subject:</strong> 23525<br /><strong>Posted:</strong> 15 December 2017 at 11:09am<br /><br />How can i in run time configure a connection line between two nodes with a broken line, or a line that make 90º degress ? <br />At design time it's easy to broke the line and make how we want, but i need to make it at run time.]]>
   </description>
   <pubDate>Fri, 15 Dec 2017 11:09:31 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=23525&amp;PID=76418&amp;title=how-to-configure-a-connection-in-runtime#76418</guid>
  </item> 
 </channel>
</rss>