This repository was archived by the owner on Dec 22, 2023. It is now read-only.

Description
hi,
i'm trying to use ScintillaNet on a 64 bit application, this way:
scintilla = new ScintillaNET.Scintilla();
scintilla.Dock = DockStyle.Fill;
panel1.Controls.Add(scintilla);
scintilla.Text = "aaaa\nbbbbb\n";
int n = scintilla.Lines.Count;
on 64 bit i get 1 as result of the Lines.Count, wrong.
on 32 bit, i get 3, correct.
i did some debugging and i found out the events in scintilla_SCNotification are not the same in 32/64bit.
thanks,
Davide