Page 49 of 104
Posted: Sat Jun 02, 2007 7:43 am
by gnozal
freak wrote:You are probably interfering with the resource numbers used by PB.
But how use these compilers commands then ?
I have no idea what resource numbers PB uses ...
Or should I only use the RESOURCE command and add icons / version info / manifests by myself in one .rc ?
Posted: Sat Jun 02, 2007 8:52 am
by gnozal
Update
Changes :
- PB4.10 : jaPBe now only uses the RESOURCE command and creates its own resource for icons / version info / manifests [XP/VistaADMIN/VistaUser]
Posted: Sat Jun 02, 2007 4:04 pm
by michel
Hello Gnozal,
I use meanwhile PureBasic 4.10 Beta 1 with your newest version of jaPBe. A strange effect occurs to me: compiling a program with the lib of ts-soft (Sqlite) in the normal IDE works perfectly.
Compiling the same program with your editor and it lacks of data when querying a database ?!
I checked and doublechecked all the parameters but I see no difference. Have You an idea what could be the reason or what I shoud focus on ?
michel
Posted: Mon Jun 04, 2007 7:38 am
by gnozal
michel wrote:Compiling the same program with your editor and it lacks of data when querying a database ?!
I checked and doublechecked all the parameters but I see no difference. Have You an idea what could be the reason or what I shoud focus on ?
michel
Maybe a path problem ? If you use a relative path (e.g. MyDb.db) try an absolute path (e.g. C:\Database\MyBd.bd).
Posted: Wed Jun 06, 2007 4:28 am
by JCV
I accidentally pressed help or F1 over a custom structure type and my IDE stop responding and close/crash.

Posted: Wed Jun 06, 2007 4:21 pm
by gnozal
Update
Changes : (PB 4.1x mode only)
- fixed recursive help call problem
- jaPBe does not patch PBCompiler / Polink anymore
- jaPBe does not use \Compilers but %TEMP% for temp files
Please note that I have much work in real world so I may not be able to update / fix bugs as fast as usually 
Thanks
Posted: Wed Jun 06, 2007 4:28 pm
by dige
Gnozal, once again, thank you very much for your good and hard work!!
Posted: Wed Jun 06, 2007 5:42 pm
by JCV
gnozal wrote:Please note that I have much work in real world so I may not be able to update / fix bugs as fast as usually 
Thanks
Yes we all understand. No problem about that. Thanks for the update.

Posted: Sat Jun 16, 2007 3:18 pm
by nicolaus
Hi Gnozal
I have here a prob with jaPBe and the shortcut STR+Z. If I use this 3-4 sometimes, very fast, one after the other, jaPBe hangs itself with 100% of one core in my CPU (i have a dualcore CPU) and write alltimes in the RAM. The only way to stop this is to kill jaPBe in the Taskmanager.
See the screenshot:
regards,
nico
Posted: Mon Jun 18, 2007 11:38 am
by gnozal
nicolaus wrote:I have here a prob with jaPBe and the shortcut STR+Z. If I use this 3-4 sometimes, very fast, one after the other, jaPBe hangs itself with 100% of one core in my CPU (i have a dualcore CPU) and write alltimes in the RAM. The only way to stop this is to kill jaPBe in the Taskmanager.
I assume STR+Z is CTRL+Z (undo) ?
After each undo, jaPBe fixes the folding markers as some cosmetic glitches may occur after an undo.
To see if that's the problem, could you recompile the sources after the following changes :
BEFORE [file jaPBe.pb Line 3194]
Code: Select all
Case #menu_main_Undo
If SCI_AutoCActive()=#True : SCI_AutoCCancel() : EndIf
SCI_Undo()
; gnozal
EndCount = CountMarks(#FoldMask_End)
If EndCount
OpenCount = CountMarks(#FoldMask_Open) + CountMarks(#FoldMask_Close)
If OpenCount
If EndCount = OpenCount
FixFoldingLines()
EndIf
EndIf
EndIf
AFTER [file jaPBe.pb Line 3194]
Code: Select all
Case #menu_main_Undo
If SCI_AutoCActive()=#True : SCI_AutoCCancel() : EndIf
SCI_Undo()
; gnozal
; EndCount = CountMarks(#FoldMask_End)
; If EndCount
; OpenCount = CountMarks(#FoldMask_Open) + CountMarks(#FoldMask_Close)
; If OpenCount
; If EndCount = OpenCount
; FixFoldingLines()
; EndIf
; EndIf
; EndIf
Thanks.
Posted: Sat Jun 23, 2007 11:30 pm
by nicolaus
Hi and sorry that i write you 6 day´s later, but the last week i´m not in germany.
I have do wat you have writen but i can compile the source. If i do this i have a errormessag from the file System.pbi line 164
and the Function WindowsID() must have a param.
How you can compile the source without errormessage?
regards,
Nico
Posted: Sun Jun 24, 2007 8:46 am
by blueznl
What version of PB are you using when compiling jaPBe?
Posted: Sun Jun 24, 2007 9:24 am
by nicolaus
I use the last normal version of PB. This is the 4.02
Posted: Mon Jun 25, 2007 12:16 pm
by gnozal
nicolaus wrote:I use the last normal version of PB. This is the 4.02
As you can see in jaPBe.pb or in the manual.chm :
Code: Select all
;/ ----------------------------------------------------------
;/ To compile the sources :
;/
;/ PB Version : 3.94 (and all lib updates)
;/ IDE : jaPBe 2.5.4.22
;/ USERLIBs : PureTools_I_04 (PBOSL) [included in source archive]
;/ ---------------------------------------------------------------------------------
Posted: Mon Jul 02, 2007 3:51 pm
by gnozal
Small update
Changes :
- fixed potential crash in 'Include binary' tool