<?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 : Column C&#079;nstrain</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Report Control : Column C&#079;nstrain]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sat, 02 May 2026 00:51:58 +0000</pubDate>
  <lastBuildDate>Tue, 02 May 2006 06:11:26 +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=4103</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[Column C&#079;nstrain : got the message, gonna try it...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4103&amp;PID=12575&amp;title=column-constrain#12575</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1973">barianto</a><br /><strong>Subject:</strong> 4103<br /><strong>Posted:</strong> 02 May 2006 at 6:11am<br /><br />got the message, gonna try it out<br><br>Thanks, sserge<br>]]>
   </description>
   <pubDate>Tue, 02 May 2006 06:11:26 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4103&amp;PID=12575&amp;title=column-constrain#12575</guid>
  </item> 
  <item>
   <title><![CDATA[Column C&#079;nstrain : A constraint is just a pair of...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4103&amp;PID=12574&amp;title=column-constrain#12574</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=862">sserge</a><br /><strong>Subject:</strong> 4103<br /><strong>Posted:</strong> 02 May 2006 at 5:38am<br /><br />A constraint is just a pair of text and long values (there in sample a long is represented with enumeration for easier reading). <br><br>You can keep those values somewhere in your database table, read it by yourself and add to the constraints collection in a loop.<br><br>--<br>WBR,<br>Serge<br>]]>
   </description>
   <pubDate>Tue, 02 May 2006 05:38:40 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4103&amp;PID=12574&amp;title=column-constrain#12574</guid>
  </item> 
  <item>
   <title><![CDATA[Column C&#079;nstrain : Sorry, english isn&amp;#039;t my native...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4103&amp;PID=12568&amp;title=column-constrain#12568</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1973">barianto</a><br /><strong>Subject:</strong> 4103<br /><strong>Posted:</strong> 01 May 2006 at 9:08pm<br /><br />Sorry, english isn't my native language<br><br>i like to add column constrain to reportcolumn, something like your sample on "report sample - tasklist form". I cut the sample here :<br><br>Enum TaskImportance<br>&nbsp;&nbsp;&nbsp; taskImportanceNormal<br>&nbsp;&nbsp;&nbsp; taskImportanceHigh<br>&nbsp;&nbsp;&nbsp; taskImportanceLow<br>End Enum<br><br>Enum TaskStatus<br>&nbsp;&nbsp;&nbsp; taskStatusNotStarted<br>&nbsp;&nbsp;&nbsp; taskStatusInProgress<br>&nbsp;&nbsp;&nbsp; taskStatusCompleted<br>&nbsp;&nbsp;&nbsp; taskStatusWaiting<br>&nbsp;&nbsp;&nbsp; taskStatusDeferred<br>End Enum<br><br>...........<br>...........<br>...........<br><br>sub Form_load()<br>&nbsp;&nbsp; ..............<br>&nbsp;&nbsp; ..............<br>&nbsp;&nbsp;&nbsp; Set Column = wndReportControl.Columns.Add(COLUMN_IMPORTANCE, "Importants", 18, False)<br>&nbsp;&nbsp;&nbsp; Column.Icon = 2<br>&nbsp;&nbsp;&nbsp; Column.EditOptions.Constraints.Add "Low", taskImportanceLow<br>&nbsp;&nbsp;&nbsp; Column.EditOptions.Constraints.Add "Normal", taskImportanceNormal<br>&nbsp;&nbsp;&nbsp; Column.EditOptions.Constraints.Add "High", taskImportanceHigh<br>&nbsp;&nbsp;&nbsp; Column.EditOptions.AllowEdit = False<br>&nbsp;&nbsp;&nbsp; Column.EditOptions.ConstraintEdit = True<br>&nbsp;&nbsp;&nbsp; Column.EditOptions.AddComboButton<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; Set Column = wndReportControl.Columns.Add(COLUMN_ATTACHMENT, "Attachments", 18, False)<br>&nbsp;&nbsp;&nbsp; Column.Icon = 5<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; Set Column = wndReportControl.Columns.Add(COLUMN_STATUS, "Status", 100, True)<br>&nbsp;&nbsp;&nbsp; Column.EditOptions.Constraints.Add "Not Started", taskStatusNotStarted<br>&nbsp;&nbsp;&nbsp; Column.EditOptions.Constraints.Add "In Progress", taskStatusInProgress<br>&nbsp;&nbsp;&nbsp; Column.EditOptions.Constraints.Add "Completed", taskStatusCompleted<br>&nbsp;&nbsp;&nbsp; Column.EditOptions.Constraints.Add "Waiting on someone else", taskStatusWaiting<br>&nbsp;&nbsp;&nbsp; Column.EditOptions.Constraints.Add "Deferred", taskStatusDeferred<br>&nbsp;&nbsp;&nbsp; Column.EditOptions.ConstraintEdit = True<br>&nbsp;&nbsp;&nbsp; Column.EditOptions.AddComboButton<br>.......<br>.......<br><br>i want the column constrain came from database (mssql, mysql, etc).<br><br>can i achieve that?<br><br><br><br><br>]]>
   </description>
   <pubDate>Mon, 01 May 2006 21:08:01 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4103&amp;PID=12568&amp;title=column-constrain#12568</guid>
  </item> 
  <item>
   <title><![CDATA[Column C&#079;nstrain : It&amp;#039;s not clear what do you...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4103&amp;PID=12565&amp;title=column-constrain#12565</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=862">sserge</a><br /><strong>Subject:</strong> 4103<br /><strong>Posted:</strong> 01 May 2006 at 6:12pm<br /><br />It's not clear what do you mean by such descriptions of the constraint. Please try to clarify it in more details.<br><br>--<br>WBR,<br>Serge<br>]]>
   </description>
   <pubDate>Mon, 01 May 2006 18:12:11 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4103&amp;PID=12565&amp;title=column-constrain#12565</guid>
  </item> 
  <item>
   <title><![CDATA[Column C&#079;nstrain : how to achieve column constrain...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4103&amp;PID=12547&amp;title=column-constrain#12547</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1973">barianto</a><br /><strong>Subject:</strong> 4103<br /><strong>Posted:</strong> 01 May 2006 at 7:15am<br /><br />how to achieve column constrain using constrain from database which could be only one row or ten row?]]>
   </description>
   <pubDate>Mon, 01 May 2006 07:15:50 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4103&amp;PID=12547&amp;title=column-constrain#12547</guid>
  </item> 
 </channel>
</rss>