-
Hi all,
I have a project made in Delphi that is using SynEdit. The editor
components are created dinamically this way:
TS := TTabSheet.Create(PageControl);
TS.PageControl := PageControl;
EditBox := TSynMemo.Create(TS);
EditBox.OnKeyPress := SynMemoKeyPress;
EditBox.Parent := TS;
EditBox.Font :=...
2010-01-03 19:12:40 UTC by csanchez71
-
All valid SQL comments using the syntax "-- comment" must have at least one whitespace character following the double-dash.
http://dev.mysql.com/doc/refman/5.1/en/comments.html.
2009-12-31 16:57:16 UTC by ansgarbecker
-
romankassebaum committed revision 4 to the SynEdit SVN repository, changing 1 files.
2009-12-14 15:10:31 UTC by romankassebaum
-
Seems solved,
In synEdit.pas, Method TCustomSynEdit.ExecuteCommand, the statement 'InternalCaretXY := BufferCoord(1, CaretY +1);' mus te boved from line 7436 to line 7433 just before 'if SpaceCount2 > 0 then" .
This solves this bug and also the bug 'Enter not working on lines with out a space - ID: 2896463'.
2009-12-12 13:01:16 UTC by pgiacomo69
-
Seems solved,
In synEdit.pas, Method TCustomSynEdit.ExecuteCommand, You have to move the statement 'InternalCaretXY := BufferCoord(1, CaretY +1);' from line 7436 to line 7433 just before 'if SpaceCount2 > 0 then" .
This solves this bug and also the bug number 2354318.
2009-12-12 12:49:51 UTC by pgiacomo69
-
hm... but someone did it.
and it works pretty good.
http://mystix.sourceforge.net/ on 2.0.1 SynEdit version.
2009-12-08 12:53:56 UTC by gsunr
-
I encountered the same problem and changed my code accordingly. It would be nice if we could see this corrected in a new release.
2009-11-13 16:47:01 UTC by freejay1106
-
Hi. I believe the problem may be in synedit.pas but I am not positive.
The version I am working with is the latest CVS build (SynEdit.pas,v 1.386.2.76 2009/09/28 17:54:20)
Delphi 7 Professional
Windows Vista Home Premium
I've seen the problem on earlier unicode builds but not the non unicode version. Basically if I create a new document, enter text on the first line
I changed the...
2009-11-12 07:42:12 UTC by cedit
-
Just a thought for you guys on the remark that it isn't possible. I tend to disagree based on the fact that the lazarus guys managed to do it quite effectively.
2009-11-11 18:11:11 UTC by cedit
-
romankassebaum committed revision 3 to the SynEdit SVN repository, changing 4 files.
2009-11-11 08:56:06 UTC by romankassebaum