<?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 : Few questions about SyntaxEdit</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Syntax Edit : Few questions about SyntaxEdit]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 13 May 2026 04:26:55 +0000</pubDate>
  <lastBuildDate>Mon, 18 Oct 2010 12:20:01 +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=13221</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[Few questions about SyntaxEdit : Hi folks!!I&amp;#039;ve been looking...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=13221&amp;PID=60978&amp;title=few-questions-about-syntaxedit#60978</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6423">lperis</a><br /><strong>Subject:</strong> 13221<br /><strong>Posted:</strong> 18 October 2010 at 12:20pm<br /><br />Hi folks!!<br><br>I've been looking for some info about disabling the SyntaxEdit breakpoints and I only could find this post. So before creating a new topic I've preferred try to reactive this thread.<br><br>My question is the same as Sergio's unanswered question. I'm using the ActiveX component as a vcl c++ control, and I would like to disable the breakpoints, so is there any way to not display the breakpoints?<br><br><span id="result_" ="short_text" lang="en"><span style="" title="">Thanks in advance</span></span>.<br><br>Greetings.<br>]]>
   </description>
   <pubDate>Mon, 18 Oct 2010 12:20:01 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=13221&amp;PID=60978&amp;title=few-questions-about-syntaxedit#60978</guid>
  </item> 
  <item>
   <title><![CDATA[Few questions about SyntaxEdit :  1. There are SyntaxEditControl...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=13221&amp;PID=45387&amp;title=few-questions-about-syntaxedit#45387</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4721">mdoubson</a><br /><strong>Subject:</strong> 13221<br /><strong>Posted:</strong> 12 February 2009 at 3:02pm<br /><br /><DIV><FONT color=#0000ff size=2><DIV><FONT color=#000000>1.</FONT> <FONT color=#000000>There are SyntaxEditControl functions: void</FONT></FONT><FONT color=#000000><FONT size=2> CollapseAll(); and </FONT><FONT size=2>void</FONT><FONT size=2> ExpandAll();</DIV></FONT></FONT></DIV><DIV>2. In VB sample Options control by VB own form - not a part of OCX. So you can implement one you like.</DIV><DIV>this is example of VB code from frmOptions - VB SyntaxEditSample:</DIV><DIV>&nbsp;</DIV><DIV>Option Explicit</DIV><DIV>Public m_pSyntaxEdit As SyntaxEdit</DIV><DIV>Private m_pFont As New StdFont</DIV><DIV>Private Sub Apply(pSyntaxEdit As SyntaxEdit)<BR>&nbsp;&nbsp;&nbsp; pSyntaxEdit.Font.Bold = m_pFont.Bold<BR>&nbsp;&nbsp;&nbsp; pSyntaxEdit.Font.Italic = m_pFont.Italic<BR>&nbsp;&nbsp;&nbsp; pSyntaxEdit.Font.Name = m_pFont.Name<BR>&nbsp;&nbsp;&nbsp; pSyntaxEdit.Font.Size = m_pFont.Size<BR>&nbsp;&nbsp;&nbsp; pSyntaxEdit.Font.Strikethrough = m_pFont.Strikethrough<BR>&nbsp;&nbsp;&nbsp; pSyntaxEdit.Font.Underline = m_pFont.Underline<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; pSyntaxEdit.ShowLineNumbers = IIf(chkLineNumbers.Value &gt; 0, True, False)<BR>&nbsp;&nbsp;&nbsp; pSyntaxEdit.ShowSelectionMargin = IIf(chkSelMargin.Value &gt; 0, True, False)<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; pSyntaxEdit.ShowScrollBarVert = IIf(chkScrollVert.Value &gt; 0, True, False)<BR>&nbsp;&nbsp;&nbsp; pSyntaxEdit.ShowScrollBarHorz = IIf(chkScrollHorz.Value &gt; 0, True, False)<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; pSyntaxEdit.EnableAutoIndent = IIf(chkAutoIndent.Value &gt; 0, True, False)<BR>&nbsp;&nbsp;&nbsp; pSyntaxEdit.EnableVirtualSpace = IIf(chkVirtualSpace.Value &gt; 0, True, False)<BR>&nbsp;&nbsp;&nbsp; pSyntaxEdit.EnableSyntaxColorization = IIf(chkSyntaxColorization.Value &gt; 0, True, False)<BR>&nbsp;&nbsp;&nbsp; <BR>End Sub</DIV><DIV>Public Sub ApplyTo(pSEdest As SyntaxEdit, pSEsrc As SyntaxEdit)<BR>&nbsp;&nbsp;&nbsp; pSEdest.Font.Bold = pSEsrc.Font.Bold<BR>&nbsp;&nbsp;&nbsp; pSEdest.Font.Italic = pSEsrc.Font.Italic<BR>&nbsp;&nbsp;&nbsp; pSEdest.Font.Name = pSEsrc.Font.Name<BR>&nbsp;&nbsp;&nbsp; pSEdest.Font.Size = pSEsrc.Font.Size<BR>&nbsp;&nbsp;&nbsp; pSEdest.Font.Strikethrough = pSEsrc.Font.Strikethrough<BR>&nbsp;&nbsp;&nbsp; pSEdest.Font.Underline = pSEsrc.Font.Underline<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; pSEdest.ShowLineNumbers = pSEsrc.ShowLineNumbers<BR>&nbsp;&nbsp;&nbsp; pSEdest.ShowSelectionMargin = pSEsrc.ShowSelectionMargin<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; pSEdest.ShowScrollBarVert = pSEsrc.ShowScrollBarVert<BR>&nbsp;&nbsp;&nbsp; pSEdest.ShowScrollBarHorz = pSEsrc.ShowScrollBarHorz<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; pSEdest.EnableAutoIndent = pSEsrc.EnableAutoIndent<BR>&nbsp;&nbsp;&nbsp; pSEdest.EnableVirtualSpace = pSEsrc.EnableVirtualSpace<BR>&nbsp;&nbsp;&nbsp; pSEdest.EnableSyntaxColorization = pSEsrc.EnableSyntaxColorization<BR>&nbsp;&nbsp;&nbsp; <BR>End Sub</DIV><DIV>Private Sub btnFont_Click()<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; cmndlgFont.Flags = cdlCFBoth + cdlCFEffects + cdlCFForceFontExist + cdlCFFixedPitchOnly<BR>&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; cmndlgFont.FontBold = m_pFont.Bold<BR>&nbsp;&nbsp;&nbsp; cmndlgFont.FontItalic = m_pFont.Italic<BR>&nbsp;&nbsp;&nbsp; cmndlgFont.FontName = m_pFont.Name<BR>&nbsp;&nbsp;&nbsp; cmndlgFont.FontSize = m_pFont.Size<BR>&nbsp;&nbsp;&nbsp; cmndlgFont.FontStrikethru = m_pFont.Strikethrough<BR>&nbsp;&nbsp;&nbsp; cmndlgFont.FontUnderline = m_pFont.Underline<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; cmndlgFont.ShowFont<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; m_pFont.Bold = cmndlgFont.FontBold<BR>&nbsp;&nbsp;&nbsp; m_pFont.Italic = cmndlgFont.FontItalic<BR>&nbsp;&nbsp;&nbsp; m_pFont.Name = cmndlgFont.FontName<BR>&nbsp;&nbsp;&nbsp; m_pFont.Size = cmndlgFont.FontSize<BR>&nbsp;&nbsp;&nbsp; m_pFont.Strikethrough = cmndlgFont.FontStrikethru<BR>&nbsp;&nbsp;&nbsp; m_pFont.Underline = cmndlgFont.FontUnderline</DIV><DIV>&nbsp;&nbsp;&nbsp; txtFont.Caption = CLng(m_pFont.Size) &amp; " pt. " &amp; m_pFont.Name<BR>&nbsp;&nbsp;&nbsp; txtFont.Font.Bold = m_pFont.Bold<BR>&nbsp;&nbsp;&nbsp; txtFont.Font.Italic = m_pFont.Italic<BR>&nbsp;&nbsp;&nbsp; txtFont.Font.Strikethrough = m_pFont.Strikethrough<BR>&nbsp;&nbsp;&nbsp; txtFont.Font.Underline = m_pFont.Underline</DIV><DIV>End Sub</DIV><DIV>Private Sub cmdApply_Click()<BR>&nbsp;&nbsp;&nbsp; Apply m_pSyntaxEdit<BR>End Sub</DIV><DIV>&nbsp;</DIV><DIV>Private Sub cmdCancel_Click()<BR>&nbsp;&nbsp;&nbsp; Unload Me<BR>End Sub</DIV><DIV>Private Sub cmdOK_Click()<BR>&nbsp;&nbsp;&nbsp; cmdApply_Click<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; Unload Me<BR>End Sub</DIV><DIV><BR>Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)<BR>&nbsp;&nbsp;&nbsp; Dim i As Integer<BR>&nbsp;&nbsp;&nbsp; i = tbsOptions.SelectedItem.Index<BR>&nbsp;&nbsp;&nbsp; 'handle ctrl+tab to move to the next tab<BR>&nbsp;&nbsp;&nbsp; If (Shift And 3) = 2 And KeyCode = vbKeyTab Then<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If i = tbsOptions.Tabs.Count Then<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'last tab so we need to wrap to tab 1<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set tbsOptions.SelectedItem = tbsOptions.Tabs(1)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Else<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'increment the tab<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set tbsOptions.SelectedItem = tbsOptions.Tabs(i + 1)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End If<BR>&nbsp;&nbsp;&nbsp; ElseIf (Shift And 3) = 3 And KeyCode = vbKeyTab Then<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If i = 1 Then<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'last tab so we need to wrap to tab 1<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set tbsOptions.SelectedItem = tbsOptions.Tabs(tbsOptions.Tabs.Count)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Else<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'increment the tab<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set tbsOptions.SelectedItem = tbsOptions.Tabs(i - 1)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End If<BR>&nbsp;&nbsp;&nbsp; End If<BR>End Sub</DIV><DIV><BR>Private Sub Form_Load()<BR>&nbsp;&nbsp;&nbsp; m_pFont.Bold = m_pSyntaxEdit.Font.Bold<BR>&nbsp;&nbsp;&nbsp; m_pFont.Italic = m_pSyntaxEdit.Font.Italic<BR>&nbsp;&nbsp;&nbsp; m_pFont.Name = m_pSyntaxEdit.Font.Name<BR>&nbsp;&nbsp;&nbsp; m_pFont.Size = m_pSyntaxEdit.Font.Size<BR>&nbsp;&nbsp;&nbsp; m_pFont.Strikethrough = m_pSyntaxEdit.Font.Strikethrough<BR>&nbsp;&nbsp;&nbsp; m_pFont.Underline = m_pSyntaxEdit.Font.Underline<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; txtFont.Caption = CLng(m_pFont.Size) &amp; " pt. " &amp; m_pFont.Name<BR>&nbsp;&nbsp;&nbsp; txtFont.Font.Bold = m_pFont.Bold<BR>&nbsp;&nbsp;&nbsp; txtFont.Font.Italic = m_pFont.Italic<BR>&nbsp;&nbsp;&nbsp; txtFont.Font.Strikethrough = m_pFont.Strikethrough<BR>&nbsp;&nbsp;&nbsp; txtFont.Font.Underline = m_pFont.Underline<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; chkLineNumbers.Value = IIf(m_pSyntaxEdit.ShowLineNumbers, 1, 0)<BR>&nbsp;&nbsp;&nbsp; chkSelMargin.Value = IIf(m_pSyntaxEdit.ShowSelectionMargin, 1, 0)<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; chkScrollVert.Value = IIf(m_pSyntaxEdit.ShowScrollBarVert, 1, 0)<BR>&nbsp;&nbsp;&nbsp; chkScrollHorz.Value = IIf(m_pSyntaxEdit.ShowScrollBarHorz, 1, 0)<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; chkAutoIndent.Value = IIf(m_pSyntaxEdit.EnableAutoIndent, 1, 0)<BR>&nbsp;&nbsp;&nbsp; chkVirtualSpace.Value = IIf(m_pSyntaxEdit.EnableVirtualSpace, 1, 0)<BR>&nbsp;&nbsp;&nbsp; chkSyntaxColorization.Value = IIf(m_pSyntaxEdit.EnableSyntaxColorization, 1, 0)<BR>&nbsp;&nbsp;&nbsp; <BR>End Sub</DIV><DIV>Private Sub Form_Unload(Cancel As Integer)<BR>&nbsp;&nbsp;&nbsp; Set m_pSyntaxEdit = Nothing<BR>End Sub</DIV><DIV>Private Sub tbsOptions_Click()<BR>&nbsp;&nbsp;&nbsp; </DIV><DIV>&nbsp;&nbsp;&nbsp; Dim i As Integer<BR>&nbsp;&nbsp;&nbsp; 'show and enable the selected tab's controls<BR>&nbsp;&nbsp;&nbsp; 'and hide and disable all others<BR>&nbsp;&nbsp;&nbsp; For i = 0 To tbsOptions.Tabs.Count - 1<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If i = tbsOptions.SelectedItem.Index - 1 Then<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; picOptions(i).Left = 210<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; picOptions(i).Enabled = True<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Else<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; picOptions(i).Left = -20000<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; picOptions(i).Enabled = False<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End If<BR>&nbsp;&nbsp;&nbsp; Next<BR>&nbsp;&nbsp;&nbsp; </DIV><DIV>End Sub</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Thu, 12 Feb 2009 15:02:25 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=13221&amp;PID=45387&amp;title=few-questions-about-syntaxedit#45387</guid>
  </item> 
  <item>
   <title><![CDATA[Few questions about SyntaxEdit : I&amp;#039;m guessing smoreno can&amp;#039;t...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=13221&amp;PID=45376&amp;title=few-questions-about-syntaxedit#45376</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4965">mattatmilsoft</a><br /><strong>Subject:</strong> 13221<br /><strong>Posted:</strong> 12 February 2009 at 10:10am<br /><br />I'm guessing smoreno can't do that because he wants a "vcl c++" control, which means he's not using Microsoft, he's using CodeGear.<br><br>smoreno, how's the evaluation of SyntaxEdit coming? I'm in a similar situation, and am trying to decide whether to use SyntaxEdit or Scintilla.]]>
   </description>
   <pubDate>Thu, 12 Feb 2009 10:10:11 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=13221&amp;PID=45376&amp;title=few-questions-about-syntaxedit#45376</guid>
  </item> 
  <item>
   <title><![CDATA[Few questions about SyntaxEdit : Why don&amp;#039;t get ToolkitPro...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=13221&amp;PID=44940&amp;title=few-questions-about-syntaxedit#44940</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4721">mdoubson</a><br /><strong>Subject:</strong> 13221<br /><strong>Posted:</strong> 27 January 2009 at 1:26pm<br /><br />Why don't get ToolkitPro and use it in your VC++ app with full power and source to use and modify?]]>
   </description>
   <pubDate>Tue, 27 Jan 2009 13:26:54 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=13221&amp;PID=44940&amp;title=few-questions-about-syntaxedit#44940</guid>
  </item> 
  <item>
   <title><![CDATA[Few questions about SyntaxEdit : Hello! I&#180;m a spanish developer...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=13221&amp;PID=44761&amp;title=few-questions-about-syntaxedit#44761</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4895">smoreno</a><br /><strong>Subject:</strong> 13221<br /><strong>Posted:</strong> 21 January 2009 at 12:27pm<br /><br />Hello! Iīm a spanish developer and I want to include the Syntax Edit ActiveX control into my application. Before purchase the component I am trying to use and configure this control in a vcl c++ visual application and I have few questions:<br><br>Firstly, I want to know if I can disable breakpoints. I have been looking for this in the documentation and I havenīt found the way to do this. I don't need breakpoints and I need they never appear without disabling the SelectionMargin.<br><br>I also want to know if the ActiveX component provides a way for showing the Options Dialog which appears in the MFC sample application of the ToolkitProEval.MFC.v12.1.1 or I must implement it.<br><br>Finally, I could see that there isn't any funtion for collapse and expand all nodes in the syntax edit (ActiveX component). Maybe I am wrong. If there is a way to do this, please tell me.<br><br>Thank you in advance. Bye.<br>]]>
   </description>
   <pubDate>Wed, 21 Jan 2009 12:27:12 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=13221&amp;PID=44761&amp;title=few-questions-about-syntaxedit#44761</guid>
  </item> 
 </channel>
</rss>