Droopy's Lib 1.31.12 (PB4.20)

Developed or developing a new product in PureBasic? Tell the world about it.
lexvictory
Addict
Addict
Posts: 1027
Joined: Sun May 15, 2005 5:15 am
Location: Australia
Contact:

Post 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...)
Demonio Ardente

Currently managing Linux & OS X Tailbite
OS X TailBite now up to date with Windows!
zikitrake
Addict
Addict
Posts: 868
Joined: Thu Mar 25, 2004 2:15 pm
Location: Spain

Post by zikitrake »

:shock:, ok... I don't use purepdf, but I'll use it in a future.
PB 6.21 beta, PureVision User
lexvictory
Addict
Addict
Posts: 1027
Joined: Sun May 15, 2005 5:15 am
Location: Australia
Contact:

Post by lexvictory »

new version released to fix crashes with purePDF
Demonio Ardente

Currently managing Linux & OS X Tailbite
OS X TailBite now up to date with Windows!
ABBKlaus
Addict
Addict
Posts: 1143
Joined: Sat Apr 10, 2004 1:20 pm
Location: Germany

Post 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:
lexvictory
Addict
Addict
Posts: 1027
Joined: Sun May 15, 2005 5:15 am
Location: Australia
Contact:

Post 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) :)
Demonio Ardente

Currently managing Linux & OS X Tailbite
OS X TailBite now up to date with Windows!
User avatar
Sveinung
Enthusiast
Enthusiast
Posts: 142
Joined: Tue Oct 07, 2003 11:03 am
Location: Bergen, Norway

Post 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
lexvictory
Addict
Addict
Posts: 1027
Joined: Sun May 15, 2005 5:15 am
Location: Australia
Contact:

Post 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.
Demonio Ardente

Currently managing Linux & OS X Tailbite
OS X TailBite now up to date with Windows!
ABBKlaus
Addict
Addict
Posts: 1143
Joined: Sat Apr 10, 2004 1:20 pm
Location: Germany

Post 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 !
Last edited by ABBKlaus on Fri Jul 18, 2008 1:24 pm, edited 1 time in total.
byo
Enthusiast
Enthusiast
Posts: 635
Joined: Mon Apr 02, 2007 1:43 am
Location: Brazil

Post 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)
Proud registered Purebasic user.
Because programming should be fun.
jvalks
User
User
Posts: 17
Joined: Thu Jun 05, 2003 12:47 pm

Post by jvalks »

WNetAddConnectionNT is crashing in PureBasic 4.20
SFSxOI
Addict
Addict
Posts: 2970
Joined: Sat Dec 31, 2005 5:24 pm
Location: Where ya would never look.....

Post by SFSxOI »

I love the droopy lib. Thank You :)
lexvictory
Addict
Addict
Posts: 1027
Joined: Sun May 15, 2005 5:15 am
Location: Australia
Contact:

Post by lexvictory »

will look into probs (only just got internet connected at new house)
Demonio Ardente

Currently managing Linux & OS X Tailbite
OS X TailBite now up to date with Windows!
lexvictory
Addict
Addict
Posts: 1027
Joined: Sun May 15, 2005 5:15 am
Location: Australia
Contact:

Post 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.
Demonio Ardente

Currently managing Linux & OS X Tailbite
OS X TailBite now up to date with Windows!
lexvictory
Addict
Addict
Posts: 1027
Joined: Sun May 15, 2005 5:15 am
Location: Australia
Contact:

Post 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)
Demonio Ardente

Currently managing Linux & OS X Tailbite
OS X TailBite now up to date with Windows!
byo
Enthusiast
Enthusiast
Posts: 635
Joined: Mon Apr 02, 2007 1:43 am
Location: Brazil

Post by byo »

Thanks, lexvictory. :wink:
Proud registered Purebasic user.
Because programming should be fun.
Post Reply