Skip to content

Instantly share code, notes, and snippets.

View jcouture100's full-sized avatar

John Couture jcouture100

View GitHub Profile
@jcouture100
jcouture100 / MsSqlRecipe.cs
Last active September 13, 2023 12:30
ScintillaNET MSSQL Recipe
// Reset the styles
scintilla.StyleResetDefault();
scintilla.Styles[Style.Default].Font = "Courier New";
scintilla.Styles[Style.Default].Size = 10;
scintilla.StyleClearAll();
// Set the SQL Lexer
scintilla.Lexer = Lexer.Sql;
// Show line numbers