Developed or developing a new product in PureBasic? Tell the world about it.
lexvictory
Addict
Posts: 1027 Joined: Sun May 15, 2005 5:15 am
Location: Australia
Contact:
Post
by lexvictory » Thu Jun 05, 2008 8:44 am
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
Posts: 868 Joined: Thu Mar 25, 2004 2:15 pm
Location: Spain
Post
by zikitrake » Thu Jun 05, 2008 9:02 am
, ok... I don't use purepdf, but I'll use it in a future.
lexvictory
Addict
Posts: 1027 Joined: Sun May 15, 2005 5:15 am
Location: Australia
Contact:
Post
by lexvictory » Thu Jun 05, 2008 9:57 am
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
Posts: 1143 Joined: Sat Apr 10, 2004 1:20 pm
Location: Germany
Post
by ABBKlaus » Thu Jun 05, 2008 4:39 pm
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
lexvictory
Addict
Posts: 1027 Joined: Sun May 15, 2005 5:15 am
Location: Australia
Contact:
Post
by lexvictory » Fri Jun 06, 2008 2:37 am
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
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!
Sveinung
Enthusiast
Posts: 142 Joined: Tue Oct 07, 2003 11:03 am
Location: Bergen, Norway
Post
by Sveinung » Mon Jun 23, 2008 10:33 am
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
Posts: 1027 Joined: Sun May 15, 2005 5:15 am
Location: Australia
Contact:
Post
by lexvictory » Mon Jun 23, 2008 10:50 am
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
Posts: 1143 Joined: Sat Apr 10, 2004 1:20 pm
Location: Germany
Post
by ABBKlaus » Tue Jun 24, 2008 9:36 pm
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
Posts: 635 Joined: Mon Apr 02, 2007 1:43 am
Location: Brazil
Post
by byo » Sat Jun 28, 2008 6:07 pm
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
Posts: 17 Joined: Thu Jun 05, 2003 12:47 pm
Post
by jvalks » Tue Jul 08, 2008 1:14 pm
WNetAddConnectionNT is crashing in PureBasic 4.20
SFSxOI
Addict
Posts: 2970 Joined: Sat Dec 31, 2005 5:24 pm
Location: Where ya would never look.....
Post
by SFSxOI » Tue Jul 08, 2008 11:07 pm
I love the droopy lib. Thank You
lexvictory
Addict
Posts: 1027 Joined: Sun May 15, 2005 5:15 am
Location: Australia
Contact:
Post
by lexvictory » Thu Jul 10, 2008 4:44 am
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
Posts: 1027 Joined: Sun May 15, 2005 5:15 am
Location: Australia
Contact:
Post
by lexvictory » Tue Jul 15, 2008 6:10 am
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
Posts: 1027 Joined: Sun May 15, 2005 5:15 am
Location: Australia
Contact:
Post
by lexvictory » Tue Jul 15, 2008 6:18 am
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
Posts: 635 Joined: Mon Apr 02, 2007 1:43 am
Location: Brazil
Post
by byo » Tue Jul 15, 2008 4:40 pm
Thanks, lexvictory.
Proud registered Purebasic user.
Because programming should be fun.