Tailbite bug

Everything else that doesn't fall into one of the other PB categories.
Chris
User
User
Posts: 60
Joined: Wed Jun 11, 2003 4:54 pm
Location: Somewhere... But i can see you!

Tailbite bug

Post by Chris »

(I don't know if i can post this bug here, move it if it's not at the right place. Sorry.)

I've updated Tailbite to 1.2 beta 1.4, and now, i can't open a file.

When i click on "Check For Error", this message is displayed:
TailBite Error

Duplicated library command: TB_Include2DDrawing()(in libraries TB_Include2DDrawing and TB_Include)
*** Added***
The same message are displayed when i run jaPBe.

PB 1.92 + jaPBe 2.4.7.17

Chris :)
My english is bad !!!... It's normal, i'm french :lol:
My english is not really the English.
It's the FrogLish (Froggy's English) ;)
El_Choni
TailBite Expert
TailBite Expert
Posts: 1007
Joined: Fri Apr 25, 2003 6:09 pm
Location: Spain

Post by El_Choni »

You need to delete the file PureBasic\PureLibraries\UserLibraries\TB_Include.

Sorry for the trouble. There's still some strange bug floating around which I can't reproduce, but I'm working on it.

Regards,
El_Choni
Chris
User
User
Posts: 60
Joined: Wed Jun 11, 2003 4:54 pm
Location: Somewhere... But i can see you!

Post by Chris »

Thanks El_Choni. :wink:

No problem, now, when i run jaPBe, but i have new bug.

This message are displayed, for any code i try to compile.
Image

I've used the code below for the test.

Code: Select all

ProcedureDLL StartTest()
  Global Debut
  Debut = GetTickCount_()
EndProcedure

ProcedureDLL StopTest()
  Stop = GetTickCount_()- Debut
  
  Heures        = Stop/3600000  : rh = Stop % 3600000
  Minutes       = rh/60000      : rm = rh % 60000
  Secondes      = rm/1000       : rs = rm % 1000
  MSecondes     = rs                            
  
  Heures$       = RSet(Str(Heures)    ,2,"0")
  Minutes$      = RSet(Str(Minutes)   ,2,"0")
  Secondes$     = RSet(Str(Secondes)  ,2,"0")
  M_Secondes$   = RSet(Str(MSecondes) ,3,"0")
  
  OpenConsole()
  PrintN("Resultat du test :")
  PrintN("")
  PrintN("Le test s'est termine en : "+ Heures$+" h "+Minutes$+" mn "+Secondes$+" s et "+M_Secondes$+" ms")
  PrintN ("")
  PrintN("Tapez une touche pour quitter")
  Repeat
  Until Inkey()
EndProcedure
This code worked correctly with the previous versions.

Chris :)
My english is bad !!!... It's normal, i'm french :lol:
My english is not really the English.
It's the FrogLish (Froggy's English) ;)
El_Choni
TailBite Expert
TailBite Expert
Posts: 1007
Joined: Fri Apr 25, 2003 6:09 pm
Location: Spain

Post by El_Choni »

Could you update TailBite and try with the new version (1.2 Beta 1.5)

Regards,
El_Choni
Chris
User
User
Posts: 60
Joined: Wed Jun 11, 2003 4:54 pm
Location: Somewhere... But i can see you!

Post by Chris »

Good job! The new version work fine!

Thank you, El_Choni, you are THE BOSS :wink:

Chris :)
My english is bad !!!... It's normal, i'm french :lol:
My english is not really the English.
It's the FrogLish (Froggy's English) ;)
gnozal
PureBasic Expert
PureBasic Expert
Posts: 4229
Joined: Sat Apr 26, 2003 8:27 am
Location: Strasbourg / France
Contact:

Post by gnozal »

TBManager says 'No updates available' (probably because I have a proxy with authentification ?).
Where can I download this new version : it tried at http://inicia.es/de/elchoni/TailBite/ but it is still 1.2b1.4
El_Choni
TailBite Expert
TailBite Expert
Posts: 1007
Joined: Fri Apr 25, 2003 6:09 pm
Location: Spain

Post by El_Choni »

Yes, for some reason I couldn't upload it to inicia. But I did upload it here:

http://perso.wanadoo.es/TailBite/
El_Choni
gnozal
PureBasic Expert
PureBasic Expert
Posts: 4229
Joined: Sat Apr 26, 2003 8:27 am
Location: Strasbourg / France
Contact:

Post by gnozal »

I should have looked :oops:
Thanks !
User avatar
NoahPhense
Addict
Addict
Posts: 1999
Joined: Thu Oct 16, 2003 8:30 pm
Location: North Florida

Post by NoahPhense »

sweet.. u rule El !

- np
Post Reply