<?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 : Focus on a Case</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Report Control : Focus on a Case]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Fri, 15 May 2026 16:36:41 +0000</pubDate>
  <lastBuildDate>Tue, 10 Jun 2008 03:24:03 +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=10905</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[Focus on a Case :    Aaron wrote:Hi, Add a timer...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=10905&amp;PID=36479&amp;title=focus-on-a-case#36479</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4175">wismerhill</a><br /><strong>Subject:</strong> 10905<br /><strong>Posted:</strong> 10 June 2008 at 3:24am<br /><br /><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Originally posted by Aaron" alt="Originally posted by Aaron" style="vertical-align: text-bottom;" /> <strong>Aaron wrote:</strong><br /><br /><br>Hi,<div>Add a timer and let the timer sub do this job <img src="https://forum.codejock.com/smileys/smiley2.gif" border="0"></div><div>&nbsp;</div><div>Private Sub RptControl_ValueChanged(ByVal Row As XtremeReportControl.IReportRow, ByVal Column As XtremeReportControl.IReportColumn, ByVal Item As XtremeReportControl.IReportRecordItem)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; 'The timer is necessary because the value changed event will be finished first.<br>&nbsp;&nbsp;&nbsp; 'If you would set: RptControl.EditItem RptControl.FocusedRow, RptControl.FocusedColumn in this sub<br>&nbsp;&nbsp;&nbsp; 'it will have no effect.<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; If Item.Value &lt; 100</div><div>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Timer1.Enabled = True<br>&nbsp;&nbsp;&nbsp; End If<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; <br>End Sub</div><div>Private Sub Timer1_Timer()<br>&nbsp;&nbsp;&nbsp; RptControl.Navigator.MoveToColumn currentSelectedCol<br>&nbsp;&nbsp;&nbsp; RptControl.Navigator.MoveToRow currentSelectedRow<br>&nbsp;&nbsp;&nbsp; RptControl.EditItem RptControl.FocusedRow, RptControl.FocusedColumn<br>&nbsp;&nbsp;&nbsp; Timer1.Enabled = False<br>End Sub</div><div>&nbsp;</div><div>Now you can use any event where reference of row/column is returned </div><div>&nbsp;</div><div>&nbsp;</div><div>&nbsp;</div></td></tr></table><br><br>I tought to use a Timer but hope I would try to find another way to solve the problem&nbsp; ;)<br><br>Thanks anyway <img src="http://forum.codejock.com/smileys/smiley2.gif" border="0" align="absmiddle"><br>]]>
   </description>
   <pubDate>Tue, 10 Jun 2008 03:24:03 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=10905&amp;PID=36479&amp;title=focus-on-a-case#36479</guid>
  </item> 
  <item>
   <title><![CDATA[Focus on a Case : It&amp;#039;s working. Thanks a lot...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=10905&amp;PID=36477&amp;title=focus-on-a-case#36477</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4224">sisge</a><br /><strong>Subject:</strong> 10905<br /><strong>Posted:</strong> 10 June 2008 at 3:19am<br /><br />It's working. Thanks a lot !!]]>
   </description>
   <pubDate>Tue, 10 Jun 2008 03:19:06 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=10905&amp;PID=36477&amp;title=focus-on-a-case#36477</guid>
  </item> 
  <item>
   <title><![CDATA[Focus on a Case :   wismerhill wrote:Hello, I find...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=10905&amp;PID=36475&amp;title=focus-on-a-case#36475</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3701">Aaron</a><br /><strong>Subject:</strong> 10905<br /><strong>Posted:</strong> 10 June 2008 at 1:49am<br /><br /><P><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Originally posted by wismerhill" alt="Originally posted by wismerhill" style="vertical-align: text-bottom;" /> <strong>wismerhill wrote:</strong><br /><br />Hello, <BR><BR>I find how to focus on a case but with a button.<BR><BR>This code works :<BR><I>Public Sub Btn_Move_Click()<BR>&nbsp;&nbsp;&nbsp; 'RptControl.EditItem Row, Column<BR>&nbsp;&nbsp;&nbsp; RptControl.FocusSubItems = True<BR>&nbsp;&nbsp;&nbsp; RptControl.Navigator.MoveToColumn 1<BR>&nbsp;&nbsp;&nbsp; RptControl.Navigator.MoveToRow 4<BR>&nbsp;&nbsp;&nbsp; RptControl.Navigator.BeginEdit<BR>End Sub<BR><BR></I>but when i try to do the same in the event ValueChanged of the report, that do not work cause the click on another cells is the last step :<BR>Value modified --&gt; Move to cells(4, 1) --&gt; set focus cells(4, 1) --&gt; click on another cells<BR><BR>Do you know any other events where we can do the move function in last step ?&nbsp;&nbsp; &nbsp;&nbsp; <BR></td></tr></table> </P><P>Hi,</P><DIV>Add a timer and let the timer sub do this job <img src="https://forum.codejock.com/smileys/smiley2.gif" border="0"></DIV><DIV>&nbsp;</DIV><DIV>Private Sub RptControl_ValueChanged(ByVal Row As XtremeReportControl.IReportRow, ByVal Column As XtremeReportControl.IReportColumn, ByVal Item As XtremeReportControl.IReportRecordItem)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; 'The timer is necessary because the value changed event will be finished first.<BR>&nbsp;&nbsp;&nbsp; 'If you would set: <FONT color=#ff0000><strong>RptControl.EditItem RptControl.FocusedRow, RptControl.FocusedColumn</strong> </FONT>in this sub<BR>&nbsp;&nbsp;&nbsp; 'it will have no effect.<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; If Item.Value &lt; 100</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Timer1.Enabled = True<BR>&nbsp;&nbsp;&nbsp; End If<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; <BR>End Sub</DIV><DIV>Private Sub Timer1_Timer()<BR>&nbsp;&nbsp;&nbsp; RptControl.Navigator.MoveToColumn currentSelectedCol<BR>&nbsp;&nbsp;&nbsp; RptControl.Navigator.MoveToRow currentSelectedRow<BR>&nbsp;&nbsp;&nbsp; RptControl.EditItem RptControl.FocusedRow, RptControl.FocusedColumn<BR>&nbsp;&nbsp;&nbsp; Timer1.Enabled = False<BR>End Sub</DIV><DIV>&nbsp;</DIV><DIV>Now you can use any event where reference of row/column is returned </DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Tue, 10 Jun 2008 01:49:53 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=10905&amp;PID=36475&amp;title=focus-on-a-case#36475</guid>
  </item> 
  <item>
   <title><![CDATA[Focus on a Case : Remarks :When i try the SelectionChanged...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=10905&amp;PID=36432&amp;title=focus-on-a-case#36432</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4175">wismerhill</a><br /><strong>Subject:</strong> 10905<br /><strong>Posted:</strong> 09 June 2008 at 3:58am<br /><br />Remarks :<br>When i try the SelectionChanged Event, i have the following error :<br><br>Run-time error '28':<br>Out of stack space<br><br>Do you know what it means ?<br>]]>
   </description>
   <pubDate>Mon, 09 Jun 2008 03:58:31 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=10905&amp;PID=36432&amp;title=focus-on-a-case#36432</guid>
  </item> 
  <item>
   <title><![CDATA[Focus on a Case : Hello, I find how to focus on...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=10905&amp;PID=36431&amp;title=focus-on-a-case#36431</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4175">wismerhill</a><br /><strong>Subject:</strong> 10905<br /><strong>Posted:</strong> 09 June 2008 at 3:53am<br /><br />Hello, <br><br>I find how to focus on a case but with a button.<br><br>This code works :<br><i>Public Sub Btn_Move_Click()<br>&nbsp;&nbsp;&nbsp; 'RptControl.EditItem Row, Column<br>&nbsp;&nbsp;&nbsp; RptControl.FocusSubItems = True<br>&nbsp;&nbsp;&nbsp; RptControl.Navigator.MoveToColumn 1<br>&nbsp;&nbsp;&nbsp; RptControl.Navigator.MoveToRow 4<br>&nbsp;&nbsp;&nbsp; RptControl.Navigator.BeginEdit<br>End Sub<br><br></i>but when i try to do the same in the event ValueChanged of the report, that do not work cause the click on another cells is the last step :<br>Value modified --&gt; Move to cells(4, 1) --&gt; set focus cells(4, 1) --&gt; click on another cells<br><br>Do you know any other events where we can do the move function in last step ?&nbsp;&nbsp;  &nbsp;&nbsp;  <br>]]>
   </description>
   <pubDate>Mon, 09 Jun 2008 03:53:02 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=10905&amp;PID=36431&amp;title=focus-on-a-case#36431</guid>
  </item> 
  <item>
   <title><![CDATA[Focus on a Case : Apologies. I meant to mention...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=10905&amp;PID=36419&amp;title=focus-on-a-case#36419</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3952">Phillip</a><br /><strong>Subject:</strong> 10905<br /><strong>Posted:</strong> 08 June 2008 at 1:24pm<br /><br />Apologies. I meant to mention the EditItem and BeginEdit methods (I used these two to construct my own BeginEditAt function).<DIV></DIV>]]>
   </description>
   <pubDate>Sun, 08 Jun 2008 13:24:17 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=10905&amp;PID=36419&amp;title=focus-on-a-case#36419</guid>
  </item> 
  <item>
   <title><![CDATA[Focus on a Case : Hi !  First, thanks a lot for...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=10905&amp;PID=36346&amp;title=focus-on-a-case#36346</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4224">sisge</a><br /><strong>Subject:</strong> 10905<br /><strong>Posted:</strong> 06 June 2008 at 4:28am<br /><br />Hi ! <DIV>First, thanks a lot for the time you already spent helping me.</DIV><DIV>&nbsp;</DIV><DIV>I cheated and used the example of wishmerhill and adapted it to my case.</DIV><DIV>So <a href="http://download.yousendit.com/2D783E267B0759A8" target="_blank">here</A> it is : </DIV><DIV>&nbsp;</DIV><DIV>Thanks again Sir !</DIV>]]>
   </description>
   <pubDate>Fri, 06 Jun 2008 04:28:39 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=10905&amp;PID=36346&amp;title=focus-on-a-case#36346</guid>
  </item> 
  <item>
   <title><![CDATA[Focus on a Case :   sisge wrote:  Also, I have...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=10905&amp;PID=36323&amp;title=focus-on-a-case#36323</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3701">Aaron</a><br /><strong>Subject:</strong> 10905<br /><strong>Posted:</strong> 05 June 2008 at 11:58am<br /><br /><FONT size=2><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Originally posted by sisge" alt="Originally posted by sisge" style="vertical-align: text-bottom;" /> <strong>sisge wrote:</strong><br /><br /></FONT><SPAN lang=FR style="FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-fareast-font-family: 'Times New Roman'; mso-ansi-: FR; mso-fareast-: FR; mso-bidi-: AR-SA">&nbsp;&nbsp; <DIV>Also, I have the v12.0 but I didn't find the Begineditat&nbsp;&nbsp;</DIV><DIV></SPAN><FONT size=2></td></tr></table> </FONT></DIV><DIV><FONT size=2>&nbsp;</FONT></DIV><DIV><FONT size=2>Hi,</FONT></DIV><DIV><FONT size=2>&nbsp;</FONT></DIV><DIV><FONT size=2>You are right @sisge, there's no method BeginEditAt</FONT></DIV><DIV><FONT size=2>BeginEditAt is&nbsp;<FONT color=#ff0000><strong>not </strong></FONT>available in V12.0 <FONT color=#ff0000><strong>(I don't know what version Philip installed? maybe V12.1 ?)</strong> <FONT color=#000000>My mistake as well, sorry <img src="http://forum.codejock.com/smileys/smiley9.gif" border="0">&nbsp;</FONT></FONT></FONT></DIV><DIV><FONT size=2>&nbsp;</FONT></DIV><DIV><FONT size=2>Can you upload a sample, I think it will be easier than explaining all options here. Please attached some info what you want me to do.</FONT></DIV>]]>
   </description>
   <pubDate>Thu, 05 Jun 2008 11:58:03 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=10905&amp;PID=36323&amp;title=focus-on-a-case#36323</guid>
  </item> 
  <item>
   <title><![CDATA[Focus on a Case :   younicke wrote:aaron you have...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=10905&amp;PID=36321&amp;title=focus-on-a-case#36321</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3701">Aaron</a><br /><strong>Subject:</strong> 10905<br /><strong>Posted:</strong> 05 June 2008 at 11:18am<br /><br /><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Originally posted by younicke" alt="Originally posted by younicke" style="vertical-align: text-bottom;" /> <strong>younicke wrote:</strong><br /><br />aaron you have to click on the image&nbsp;<img src="http://forum.codejock.com/smileys/smiley17.gif" border="0"></td></tr></table> <DIV>&nbsp;</DIV><DIV>Wow, I DO have the equipment, just a mouse will do the trick <img src="https://forum.codejock.com/smileys/smiley2.gif" border="0">&nbsp;&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>Thanks&nbsp;</DIV>]]>
   </description>
   <pubDate>Thu, 05 Jun 2008 11:18:49 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=10905&amp;PID=36321&amp;title=focus-on-a-case#36321</guid>
  </item> 
  <item>
   <title><![CDATA[Focus on a Case : aaron you have to click on the...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=10905&amp;PID=36319&amp;title=focus-on-a-case#36319</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1038">younicke</a><br /><strong>Subject:</strong> 10905<br /><strong>Posted:</strong> 05 June 2008 at 11:04am<br /><br />aaron you have to click on the image&nbsp;<img src="http://forum.codejock.com/smileys/smiley17.gif" border="0" align="absmiddle">]]>
   </description>
   <pubDate>Thu, 05 Jun 2008 11:04:03 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=10905&amp;PID=36319&amp;title=focus-on-a-case#36319</guid>
  </item> 
 </channel>
</rss>