<?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 use xtpControlRadioButton</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Command Bars : How to use xtpControlRadioButton]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Thu, 11 Jun 2026 03:47:11 +0000</pubDate>
  <lastBuildDate>Mon, 26 Nov 2007 17:25:13 +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=8899</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 use xtpControlRadioButton : Oleg,Thanks a lot. The code works...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=8899&amp;PID=28862&amp;title=how-to-use-xtpcontrolradiobutton#28862</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2378">Rod001</a><br /><strong>Subject:</strong> 8899<br /><strong>Posted:</strong> 26 November 2007 at 5:25pm<br /><br /><DIV>Oleg,<BR>Thanks a lot. The code works great. <img src="https://forum.codejock.com/smileys/smiley32.gif" border="0"><BR><BR>Rod<BR></DIV>]]>
   </description>
   <pubDate>Mon, 26 Nov 2007 17:25:13 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=8899&amp;PID=28862&amp;title=how-to-use-xtpcontrolradiobutton#28862</guid>
  </item> 
  <item>
   <title><![CDATA[How to use xtpControlRadioButton : Hi, Add some variable for selected...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=8899&amp;PID=28844&amp;title=how-to-use-xtpcontrolradiobutton#28844</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 8899<br /><strong>Posted:</strong> 26 November 2007 at 1:55pm<br /><br />Hi,<DIV>Add some variable for selected SUMMARY</DIV><DIV>dim SelectedSummary as long and set it in Execute/Update&nbsp; control in Update event:</DIV><DIV>&nbsp;</DIV><DIV>CommandBars_Execut</DIV><DIV>...</DIV><DIV>Case ID_SUMMARY_90</DIV><DIV>&nbsp; SelectedSummary = 90</DIV><DIV>&nbsp;</DIV><DIV>...</DIV><DIV>&nbsp;</DIV><DIV>CommandBars_Update</DIV><DIV>...</DIV><DIV>Case ID_SUMMARY_90</DIV><DIV>&nbsp;&nbsp;&nbsp; Control.Checked = SelectedSummary&nbsp; = 90<BR></DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Mon, 26 Nov 2007 13:55:35 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=8899&amp;PID=28844&amp;title=how-to-use-xtpcontrolradiobutton#28844</guid>
  </item> 
  <item>
   <title><![CDATA[How to use xtpControlRadioButton : Hi,  I am using thecode below...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=8899&amp;PID=28837&amp;title=how-to-use-xtpcontrolradiobutton#28837</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2378">Rod001</a><br /><strong>Subject:</strong> 8899<br /><strong>Posted:</strong> 26 November 2007 at 12:07pm<br /><br /><DIV>Hi,</DIV><DIV>&nbsp;</DIV><DIV>I am using the&nbsp;code below to create RadioButton controls in a VB app with CJ ver. 11.2.0.</DIV><DIV>&nbsp;</DIV><DIV>I&nbsp;am not sure (if at all) about how to handle the events CommandBars_Execute and/or CommandBars_Update.</DIV><DIV>&nbsp;</DIV><DIV>How do I turn on and off the button?</DIV><DIV>&nbsp;</DIV><DIV>See below.</DIV><DIV>&nbsp;</DIV><DIV>Thank you,</DIV><DIV>Rod</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>Set SummaryBar = CommandBars.Add("Summary", xtpBarTop)<BR>&nbsp;&nbsp;&nbsp; With SummaryBar.Controls<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set Control = .Add(xtpControlButton, ID_PRINT, "Print"): Control.Style = xtpButtonIcon<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set Control = .Add(xtpControlButton, ID_CLEAR, "Clear"): Control.Style = xtpButtonIconAndCaption: Control.BeginGroup = True<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set Control = .Add(xtpControlRadioButton, ID_SUMMARY_90, "90 Days"): Control.BeginGroup = True<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set Control = .Add(xtpControlRadioButton, ID_SUMMARY_60, "60 Days")<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set Control = .Add(xtpControlRadioButton, ID_SUMMARY_30, "30 Days")<BR>&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set Control = .Add(xtpControlCheckBox, ID_APPEND, "Append Summary Data"): Control.Style = xtpButtonIconAndCaption: Control.BeginGroup = True</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp; End With<BR></DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV><img src="https://forum.codejock.com/uploads/20071126_113935_CommandBar.gif" border="0"></DIV>]]>
   </description>
   <pubDate>Mon, 26 Nov 2007 12:07:36 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=8899&amp;PID=28837&amp;title=how-to-use-xtpcontrolradiobutton#28837</guid>
  </item> 
 </channel>
</rss>