<?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 Slider</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Command Bars : Problem with Slider]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Mon, 15 Jun 2026 00:12:29 +0000</pubDate>
  <lastBuildDate>Tue, 28 Apr 2009 06:38:34 +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=14148</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 Slider : Glad to help!  ]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14148&amp;PID=48438&amp;title=problem-with-slider#48438</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2676">jpbro</a><br /><strong>Subject:</strong> 14148<br /><strong>Posted:</strong> 28 April 2009 at 6:38am<br /><br />Glad to help!]]>
   </description>
   <pubDate>Tue, 28 Apr 2009 06:38:34 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14148&amp;PID=48438&amp;title=problem-with-slider#48438</guid>
  </item> 
  <item>
   <title><![CDATA[Problem with Slider : is possible change slider to vertical...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14148&amp;PID=48405&amp;title=problem-with-slider#48405</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=5081">redstarsoft</a><br /><strong>Subject:</strong> 14148<br /><strong>Posted:</strong> 27 April 2009 at 2:36pm<br /><br />is possible change slider to vertical ?]]>
   </description>
   <pubDate>Mon, 27 Apr 2009 14:36:00 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14148&amp;PID=48405&amp;title=problem-with-slider#48405</guid>
  </item> 
  <item>
   <title><![CDATA[Problem with Slider : OHHHHHHHHH perfect jbbro  thanks...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14148&amp;PID=48404&amp;title=problem-with-slider#48404</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=5081">redstarsoft</a><br /><strong>Subject:</strong> 14148<br /><strong>Posted:</strong> 27 April 2009 at 2:18pm<br /><br />OHHHHHHHHH perfect jbbro<br /><br />thanks so much :D <br /><br />very good]]>
   </description>
   <pubDate>Mon, 27 Apr 2009 14:18:46 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14148&amp;PID=48404&amp;title=problem-with-slider#48404</guid>
  </item> 
  <item>
   <title><![CDATA[Problem with Slider : Did you try it? Seems to work...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14148&amp;PID=48401&amp;title=problem-with-slider#48401</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2676">jpbro</a><br /><strong>Subject:</strong> 14148<br /><strong>Posted:</strong> 27 April 2009 at 2:13pm<br /><br />Did you try it? Seems to work for me:<br><br><table width="99%"><tr><td><pre class="BBcode"><br>Option Explicit<br><br>Private Const mc_IdScroll As Long = 1000<br><br>Private Sub CommandBars1_Execute(ByVal Control As XtremeCommandBars.ICommandBarControl)<br>&nbsp;&nbsp; Select Case Control.Id<br>&nbsp;&nbsp; Case mc_IdScroll<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ' Scroll has been clicked or changed<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Debug.Print "Scroll Value: " &amp; Control.Pos<br>&nbsp;&nbsp; End Select<br>End Sub<br><br>Private Sub Form_Load()<br>&nbsp;&nbsp; Dim lo_Scroll As CommandBarScrollBar<br>&nbsp;&nbsp; <br>&nbsp;&nbsp; With Me.CommandBars1<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set lo_Scroll = .CreateCommandBarControl("CXTPControlScrollBar")<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; With lo_Scroll<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Id = mc_IdScroll ' Give the Scroll control a unique identifier<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ' Set Scroll range &amp; position<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Min = 0<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Max = 100<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Pos = 25&nbsp;&nbsp; ' Set initial position/value of Scroll<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End With<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Item(1).Controls.AddControl lo_Scroll<br>&nbsp;&nbsp; End With<br>End Sub<br></pre></td></tr></table><br>]]>
   </description>
   <pubDate>Mon, 27 Apr 2009 14:13:00 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14148&amp;PID=48401&amp;title=problem-with-slider#48401</guid>
  </item> 
  <item>
   <title><![CDATA[Problem with Slider : i do&#180;t like of style of &amp;#034;...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14148&amp;PID=48398&amp;title=problem-with-slider#48398</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=5081">redstarsoft</a><br /><strong>Subject:</strong> 14148<br /><strong>Posted:</strong> 27 April 2009 at 2:08pm<br /><br />i do´t like of style of "CXTPControlSlider"<br />think that CXTPControlScrollbar is more beautiful.<br /><br />can i use CXTPcontrolscrollbar same ???<br /><br />think that have a solucion to use it in VB.<br /><br />comeone can help ? thanks]]>
   </description>
   <pubDate>Mon, 27 Apr 2009 14:08:19 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14148&amp;PID=48398&amp;title=problem-with-slider#48398</guid>
  </item> 
  <item>
   <title><![CDATA[Problem with Slider : Try this code on a form with a...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14148&amp;PID=48396&amp;title=problem-with-slider#48396</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2676">jpbro</a><br /><strong>Subject:</strong> 14148<br /><strong>Posted:</strong> 27 April 2009 at 2:06pm<br /><br />Try this code on a form with a CommandBar control (CommandBars1) on it:<br><br><table width="99%"><tr><td><pre class="BBcode"><br>Option Explicit<br><br>Private Const mc_IdSlider As Long = 1000<br><br>Private Sub CommandBars1_Execute(ByVal Control As XtremeCommandBars.ICommandBarControl)<br>&nbsp;&nbsp; Select Case Control.Id<br>&nbsp;&nbsp; Case mc_IdSlider<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ' Slider has been clicked or changed<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Debug.Print "Slider Value: " &amp; Control.Pos<br>&nbsp;&nbsp; End Select<br>End Sub<br><br>Private Sub Form_Load()<br>&nbsp;&nbsp; Dim lo_Slider As CommandBarSlider<br>&nbsp;&nbsp; <br>&nbsp;&nbsp; With Me.CommandBars1<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set lo_Slider = .CreateCommandBarControl("CXTPControlSlider")<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; With lo_Slider<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Id = mc_IdSlider ' Give the slider control a unique identifier<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ' Set slider range &amp; position<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Min = 0<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Max = 100<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Pos = 25&nbsp;&nbsp; ' Set initial position/value of slider<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End With<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Item(1).Controls.AddControl lo_Slider<br>&nbsp;&nbsp; End With<br>End Sub<br></pre></td></tr></table><br>]]>
   </description>
   <pubDate>Mon, 27 Apr 2009 14:06:22 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14148&amp;PID=48396&amp;title=problem-with-slider#48396</guid>
  </item> 
  <item>
   <title><![CDATA[Problem with Slider : can you show a exemple ? ]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14148&amp;PID=48395&amp;title=problem-with-slider#48395</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=5081">redstarsoft</a><br /><strong>Subject:</strong> 14148<br /><strong>Posted:</strong> 27 April 2009 at 1:58pm<br /><br />can you show a exemple ?]]>
   </description>
   <pubDate>Mon, 27 Apr 2009 13:58:26 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14148&amp;PID=48395&amp;title=problem-with-slider#48395</guid>
  </item> 
  <item>
   <title><![CDATA[Problem with Slider : Use CXTPControlSlider (instead...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14148&amp;PID=48389&amp;title=problem-with-slider#48389</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2676">jpbro</a><br /><strong>Subject:</strong> 14148<br /><strong>Posted:</strong> 27 April 2009 at 12:31pm<br /><br />Use CXTPControlSlider (instead of CXTPControlScrollbar), dim your control variable as CommandBarSlider and then set the Control.Pos property to change the position.]]>
   </description>
   <pubDate>Mon, 27 Apr 2009 12:31:03 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14148&amp;PID=48389&amp;title=problem-with-slider#48389</guid>
  </item> 
  <item>
   <title><![CDATA[Problem with Slider : I want Set and Get &amp;#034;Value&amp;#034;...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14148&amp;PID=48371&amp;title=problem-with-slider#48371</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=5081">redstarsoft</a><br /><strong>Subject:</strong> 14148<br /><strong>Posted:</strong> 27 April 2009 at 2:30am<br /><br />I want Set and Get "Value" of Control...<br /><br />]]>
   </description>
   <pubDate>Mon, 27 Apr 2009 02:30:42 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14148&amp;PID=48371&amp;title=problem-with-slider#48371</guid>
  </item> 
 </channel>
</rss>