<?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 : Breakpoints</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Syntax Edit : Breakpoints]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Tue, 12 May 2026 21:00:34 +0000</pubDate>
  <lastBuildDate>Thu, 08 Apr 2010 19:13:48 +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=13169</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[Breakpoints : OK, after some test, here the...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=13169&amp;PID=57996&amp;title=breakpoints#57996</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4669">gibra</a><br /><strong>Subject:</strong> 13169<br /><strong>Posted:</strong> 08 April 2010 at 7:13pm<br /><br />OK, after some test, here the code How-To remove ALL bookmarks: <img src="http://forum.codejock.com/smileys/smiley2.gif" border="0"><DIV>&nbsp;</DIV><DIV><strong>&nbsp;&nbsp;&nbsp; Private Sub BookmarkDelete()<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</strong><strong><FONT color=#006600>' Remove all bookmarks<BR></FONT>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Dim pCurrRow As Integer<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Dim nextBookmark As Boolean<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; nextBookmark = True</strong></DIV><DIV><strong><BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Do While nextBookmark<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SyntaxEdit.NextBookmark()<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If SyntaxEdit.CurrRow &lt;&gt; pCurrRow Then<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SyntaxEdit.AddRemoveBookmark(SyntaxEdit.CurrRow)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; pCurrRow = SyntaxEdit.CurrRow<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; nextBookmark = True<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Else<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; nextBookmark = False<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End If<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Loop<BR>&nbsp;&nbsp;&nbsp; End Sub</strong></DIV><DIV>&nbsp;</DIV><DIV>N.B.</DIV><DIV>But, there not way to delete (clear) all breakpoints... <img src="http://forum.codejock.com/smileys/smiley19.gif" border="0"></DIV><DIV>I hope CJ&nbsp;developer add this. <img src="http://forum.codejock.com/smileys/smiley32.gif" border="0"></DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Thu, 08 Apr 2010 19:13:48 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=13169&amp;PID=57996&amp;title=breakpoints#57996</guid>
  </item> 
  <item>
   <title><![CDATA[Breakpoints : hi man i have a question about...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=13169&amp;PID=57937&amp;title=breakpoints#57937</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6024">moremo</a><br /><strong>Subject:</strong> 13169<br /><strong>Posted:</strong> 05 April 2010 at 5:36am<br /><br />hi man i have a question about unicode in reportControl<br />will u help me?]]>
   </description>
   <pubDate>Mon, 05 Apr 2010 05:36:30 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=13169&amp;PID=57937&amp;title=breakpoints#57937</guid>
  </item> 
  <item>
   <title><![CDATA[Breakpoints : Really I don&amp;#039;t understand...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=13169&amp;PID=57933&amp;title=breakpoints#57933</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4669">gibra</a><br /><strong>Subject:</strong> 13169<br /><strong>Posted:</strong> 04 April 2010 at 9:03pm<br /><br />Really I don't understand why there aren't properties to remove Bookmark and/or Breakpoint for a specific row.I.e. <DIV>&nbsp;</DIV><DIV><strong>object.RemoveBookmark(row) </strong></DIV><DIV><DIV><strong>object.RemoveBreakpoint(row) </strong></DIV><DIV>&nbsp;</DIV></DIV><DIV>Also, a Clear method is missing to remove all Bookmark&nbsp; and/or Breakpoint, this force the user to remove them manually!</DIV><DIV>Should be something like:</DIV><DIV>&nbsp;</DIV><DIV><strong>object.Bookmark.Clear()</strong></DIV><DIV><strong>object.Breakpoint.Clear()</strong></DIV><DIV><strong></strong>&nbsp;</DIV><DIV>I hope you plan to implement this features in next version. <img src="http://forum.codejock.com/smileys/smiley2.gif" border="0"></DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Sun, 04 Apr 2010 21:03:18 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=13169&amp;PID=57933&amp;title=breakpoints#57933</guid>
  </item> 
  <item>
   <title><![CDATA[Breakpoints : Is it likely that events and properties...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=13169&amp;PID=49931&amp;title=breakpoints#49931</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4477">jads</a><br /><strong>Subject:</strong> 13169<br /><strong>Posted:</strong> 14 June 2009 at 9:47pm<br /><br />Is it likely that events and properties will be added to the SyntaxEdit control to expose bookmark and breakpoint information, such as a count and the rows that that have bookmark and breakpoint set.&nbsp; This info must already be in the SyntaxEdit control and would be useful to assist in enabling menu options for navigation. Maybe even other properties such as enabling and disabling<DIV>I know that i could manage this info, but it seems like double handling when the contol already has the required info</DIV>]]>
   </description>
   <pubDate>Sun, 14 Jun 2009 21:47:17 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=13169&amp;PID=49931&amp;title=breakpoints#49931</guid>
  </item> 
  <item>
   <title><![CDATA[Breakpoints : I know. But it is necessary to...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=13169&amp;PID=45105&amp;title=breakpoints#45105</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1502">lionello</a><br /><strong>Subject:</strong> 13169<br /><strong>Posted:</strong> 03 February 2009 at 3:09am<br /><br />I know.<DIV>But it is necessary to have an event in order to intercept&nbsp;the activation&nbsp;of a breakpoint from users!</DIV><DIV>&nbsp;</DIV><DIV>Thanks</DIV>]]>
   </description>
   <pubDate>Tue, 03 Feb 2009 03:09:40 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=13169&amp;PID=45105&amp;title=breakpoints#45105</guid>
  </item> 
  <item>
   <title><![CDATA[Breakpoints :  There are functionsin ActiveX...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=13169&amp;PID=45099&amp;title=breakpoints#45099</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4721">mdoubson</a><br /><strong>Subject:</strong> 13169<br /><strong>Posted:</strong> 02 February 2009 at 11:20pm<br /><br /><FONT size=2><FONT size=2><FONT size=2><DIV></FONT>There are functions&nbsp;in ActiveX -&nbsp;&nbsp;</DIV><DIV>AddRemoveBookmark(long nRow);<BR>AddRemoveBreakPoint(long nRow);</DIV><DIV>PrevBookmark(); NextBookmark();</DIV><DIV>&nbsp;</DIV><DIV>There are no functions like&nbsp;PrevBreakpoint(); NextBreakpoint();</DIV><DIV>So you need to make own code to manage it as you know the rows you marked as Breakpoint (nRow!)</DIV><DIV></DIV></FONT></FONT>]]>
   </description>
   <pubDate>Mon, 02 Feb 2009 23:20:16 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=13169&amp;PID=45099&amp;title=breakpoints#45099</guid>
  </item> 
  <item>
   <title><![CDATA[Breakpoints : News?????? ]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=13169&amp;PID=45079&amp;title=breakpoints#45079</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1502">lionello</a><br /><strong>Subject:</strong> 13169<br /><strong>Posted:</strong> 02 February 2009 at 12:40pm<br /><br /><P>News??????</P>]]>
   </description>
   <pubDate>Mon, 02 Feb 2009 12:40:24 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=13169&amp;PID=45079&amp;title=breakpoints#45079</guid>
  </item> 
  <item>
   <title><![CDATA[Breakpoints : In SyntaxEdit how we can have...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=13169&amp;PID=44551&amp;title=breakpoints#44551</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1502">lionello</a><br /><strong>Subject:</strong> 13169<br /><strong>Posted:</strong> 14 January 2009 at 5:45am<br /><br />In SyntaxEdit how we can have the Breakpoints RowsNumber?<DIV>&nbsp;</DIV><DIV>Best regards</DIV><DIV>Thanks</DIV>]]>
   </description>
   <pubDate>Wed, 14 Jan 2009 05:45:48 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=13169&amp;PID=44551&amp;title=breakpoints#44551</guid>
  </item> 
 </channel>
</rss>