Page 4 of 6
Posted: Wed May 13, 2009 8:01 am
by gnozal
DoubleDutch wrote:The only thing that I can see thats been 'depreciated' to do with folding is:
SC_FOLDFLAG_BOX
SC_FOLDLEVELBOXHEADERFLAG
SC_FOLDLEVELBOXFOOTERFLAG
SC_FOLDLEVELCONTRACTED
SC_FOLDLEVELUNINDENT
These functions are not used in jaPBe code ; there are only defined in Scintilla.pbi but not actually used.
DoubleDutch wrote:I can (i think) create a version with the depreciated functions back in...
Thanks. Got your PM. Unfortunately, it doesn't work.
It's a seldom crash which seems to concern folding ; it only happend so far with one source, and only under certain circumstances.
Posted: Wed May 13, 2009 8:29 am
by DoubleDutch
Maybe it's some kind of memory corruption?
Posted: Wed Jul 08, 2009 1:55 pm
by gnozal
DoubleDutch wrote:Maybe it's some kind of memory corruption?
Might be.
A new Scintilla version (1.79) was released on 1 July 2009.
According to
ScintillaHistory.html, some bugs introduced in v1.78 are fixed.
I didn't have the time to test it yet.
Re: Scintilla Static Library
Posted: Tue Nov 10, 2009 11:14 am
by gnozal
Update (all PB versions)
Changes :
- upgraded Scintilla to version 2.01
(Should work on all versions of Windows [compiled with VS2003] : thanks DoubleDutch !)
Re: Scintilla Static Library
Posted: Mon Jan 25, 2010 1:22 pm
by gnozal
Update (all PB versions)
Changes :
- upgraded Scintilla to version 2.02
(Should work on all versions of Windows [compiled with VS2003] : thanks DoubleDutch !)
Re: Scintilla Static Library
Posted: Thu Feb 11, 2010 8:02 am
by X
Installed on PB 4.41 x64 on Windows 7. Opened the ScintillaStaticLibTest.pb file with jaPBe 3.10.2.822. Pressed F6 to run, and get the following error:
Linker error
POLINK: fatal error: Corrupt library: ".\ScintillaStaticLite_LIB_1.lib"
Cant use the library ...
Re: Scintilla Static Library
Posted: Thu Feb 11, 2010 9:20 am
by gnozal
X wrote:Installed on PB 4.41 x64 on Windows 7...
As stated on my homepage, all my libs / tools are for Windows
x86 only.
Re: Scintilla Static Library
Posted: Thu Feb 11, 2010 4:52 pm
by X
That was impossible to know

Since direct download link is on this thread, but no mentioning of 32-bit only.
Re: Scintilla Static Library
Posted: Mon Aug 02, 2010 9:43 am
by gnozal
Update (PB4.5x version)
Changes :
- upgraded Scintilla to version 2.20 (thanks DoubleDutch !)
Warning : due to some API calls like MonitorFromPoint(), Scintilla > 2.02 requires Win2000 as minimum OS.
The previous version is still available :
http://gnozal.ucoz.com/ScintillaStatic_450_v202.zip
Re: Scintilla Static Library
Posted: Mon Aug 02, 2010 11:11 am
by DoubleDutch
Does this also apply to the dll? Or is it just the lib version?
(I mean if you don't call MonitorFromPoint(), does it still work?)
If anyone wants the original dll's compiled with VS2003, here they are:
http://ɯoɔ.com/downloads/scintilla.zip
Re: Scintilla Static Library
Posted: Mon Aug 02, 2010 1:22 pm
by gnozal
DoubleDutch wrote:Does this also apply to the dll? Or is it just the lib version?
If you examine the DLLs with dependency walker, you see 3 functions not successfully loaded (USER32) on NT4 : MonitorFromPoint(), MonitorFromRect() and GetMonitorInfoA().
And I can't load Scintilla.DLL v2.20 with PB4.50 on NT4.
MSDN says these functions need Win 2000 or above.
However, the 2003 SDK help says Win98/SE is also supported ...
Re: Scintilla Static Library
Posted: Thu Oct 28, 2010 8:33 am
by gnozal
Update (PB4.5x version)
Changes :
- upgraded Scintilla to version
2.22 (thanks DoubleDutch !)
Warning : due to some API calls like MonitorFromPoint(), Scintilla > 2.02 requires Win2000 as minimum OS.
A (previous) version compatible with all Windows versions is still available :
http://gnozal.ucoz.com/ScintillaStatic_450_v202.zip
Re: Scintilla Static Library
Posted: Thu Oct 28, 2010 8:59 am
by DoubleDutch
no problem.
Does this version still not load on NT4?
Anyone else want the dll versions? - they are at:
http://ɯoɔ.com/downloads/scintilla.zip
Re: Scintilla Static Library
Posted: Thu Oct 28, 2010 9:10 am
by gnozal
DoubleDutch wrote:no problem.

Does this version still not load on NT4?
No (USER32 -> MonitorFromPoint(), MonitorFromRect() etc...).
I think they dropped support for Windows < Win2k.
Re: Scintilla Static Library
Posted: Thu Oct 28, 2010 9:53 am
by DoubleDutch
That's a shame - any ideas when that was implemented - I'll add the last working dll to my app and load that if the 'openlibrary' fails.