Page 5 of 6

Posted: Thu Jun 05, 2008 8:44 am
by lexvictory
zikitrake wrote:Here, Lexvictory version works fine (you only be sure to delete old Droppy's libs)
when using with purepdf it crashes, user sent an email to us both.
(i dont know what tailbite change has been made...)

Posted: Thu Jun 05, 2008 9:02 am
by zikitrake
:shock:, ok... I don't use purepdf, but I'll use it in a future.

Posted: Thu Jun 05, 2008 9:57 am
by lexvictory
new version released to fix crashes with purePDF

Posted: Thu Jun 05, 2008 4:39 pm
by ABBKlaus
lexvictory wrote:(i dont know what tailbite change has been made...)
it was the string bug that was fixed (27.5.2008), you released an update of droopy´s lib on 25.5.2008.
Most likely you compiled with TailBite v1.3 PR 1.875 :shock:

Posted: Fri Jun 06, 2008 2:37 am
by lexvictory
ABBKlaus wrote:
lexvictory wrote:(i dont know what tailbite change has been made...)
it was the string bug that was fixed (27.5.2008), you released an update of droopy´s lib on 25.5.2008.
Most likely you compiled with TailBite v1.3 PR 1.875 :shock:
yep, because i couldnt compile with v 1.874 (http://www.purebasic.fr/english/viewtopic.php?t=32510) :)

Posted: Mon Jun 23, 2008 10:33 am
by Sveinung
The command LdbSearch() crashes under 4.20.
DB opens ok, LdbSearch gets 'Invalid memory access. (read error at address 1)'

Anyone else got this problem?

I run PB 4.20 full

Regards
Sveinung

Posted: Mon Jun 23, 2008 10:50 am
by lexvictory
Sveinung wrote:The command LdbSearch() crashes under 4.20.
DB opens ok, LdbSearch gets 'Invalid memory access. (read error at address 1)'

Anyone else got this problem?

I run PB 4.20 full

Regards
Sveinung
i dont think the ldb functions have been updated fox PB 4.x, i dont have the time for it.
if someone can fix them, they will be modified in the lib.

Posted: Tue Jun 24, 2008 9:36 pm
by ABBKlaus
The droopy lib makes use of the Static keyword, this is not supported with TailBite (for now).

[Edit]
To be more precise :
Static vars like Byte/Word/Long/Float/Double/Quad work.
The use of Strings in a Static keyword is not allowed !

Posted: Sat Jun 28, 2008 6:07 pm
by byo
Glad to see people are still updating this wonderful userlib. I'd like to report another bug though:

PrinterEnum is crashing as well.

Code: Select all

Procedure.s byo_PrinterNames()
	str1 = PrinterEnum()
	result = str1
	
	While Trim(str1) <> ""
		str1 = PrinterEnum()
		
		If Trim(str1) <> ""
			result + #CRLF$ + str1
		EndIf
	Wend
	ProcedureReturn result
EndProcedure
Invalid memory access. (write error at address 4199151)

Posted: Tue Jul 08, 2008 1:14 pm
by jvalks
WNetAddConnectionNT is crashing in PureBasic 4.20

Posted: Tue Jul 08, 2008 11:07 pm
by SFSxOI
I love the droopy lib. Thank You :)

Posted: Thu Jul 10, 2008 4:44 am
by lexvictory
will look into probs (only just got internet connected at new house)

Posted: Tue Jul 15, 2008 6:10 am
by lexvictory
byo wrote:PrinterEnum is crashing as well.
because it uses static:
ABBKlaus wrote:The droopy lib makes use of the Static keyword, this is not supported with TailBite (for now).

copy the procedure from the source (in pb directory\droopys lib\) and rename it and use from there.

Posted: Tue Jul 15, 2008 6:18 am
by lexvictory
jvalks wrote:WNetAddConnectionNT is crashing in PureBasic 4.20
fixed for next version (unicode also):
all wnet functions were calling dll (using openlibrary), now calls api directly (probably wasnt supported when command added)

Posted: Tue Jul 15, 2008 4:40 pm
by byo
Thanks, lexvictory. :wink: