Page 9 of 40

Posted: Mon Jul 12, 2004 6:11 pm
by El_Choni
MAYBE this is why the installer/updater looking funny, cause .10 is OLDER than .90
Right, my maths are going down the sink lately... In my discharge, I must say it has been a quite intense weekend. Fixed now, my apologies.

..

Posted: Mon Jul 12, 2004 6:26 pm
by NoahPhense
El_Choni wrote:Right, my maths are going down the sink lately... In my discharge, I must say it has been a quite intense weekend. Fixed now, my apologies.
No need for any apologies. I didn't even catch it at first.. then it just
slapped me in the face.. mostly because today I have too much free
time on my hands.. ;)

- np

Posted: Mon Jul 12, 2004 8:18 pm
by El_Choni
Ok, looks like a couple of important bugs have been fixed now. Any feedback will be appreciated. If no more bugs are found, I'll upload the final version in a few days.

Thanks for your help, and regards,

Posted: Mon Jul 12, 2004 10:17 pm
by Comtois
NoahPhense wrote:Please post the FULL source that you are trying to create a lib from. Or send it to me privately.- np
Thank's, the problem is on my computer , i dont know what , i search .

Here is what i get if i ask only source files.

http://perso.wanadoo.fr/comtois/M3D_Mat ... ilbite.zip

I have the last version of Purebasic and Tailbite .

Posted: Mon Jul 12, 2004 10:34 pm
by El_Choni
@Comtois: I've checked the files in your link, and seems to be a problem related to a bug that is supposed to be fixed in TailBite 1.2 Beta 1.0 You're sure that's the version you're using?

Regards,

..

Posted: Mon Jul 12, 2004 11:05 pm
by NoahPhense
Try this.. print it out if you need to.

Image

Image

Reinstall TailBite

- np

Posted: Thu Jul 15, 2004 3:57 pm
by Chris
Hello!

I have the same bug as Comtois.
When i try to compile my lib, i receive a message from Tailbite:
---------------------------
TailBite Error
---------------------------
polib:
POLIB: fatal error: File not found: 'Â¥''.

Le canal de communication a été fermé.

---------------------------
OK
---------------------------
I use the 1.2 beta 1.0 version, with PureBasic 3.91 and jaPBe 2.4.6.14

I have uninstalled and reinstalled all, but the problem are always present.

With my older versions of PureBasic and TailBite, i had no compilation problems.

Chris :)

..

Posted: Thu Jul 15, 2004 4:00 pm
by NoahPhense
Chris wrote:Hello!

I have the same bug as Comtois.
When i try to compile my lib, i receive a message from Tailbite:
---------------------------
TailBite Error
---------------------------
polib:
POLIB: fatal error: File not found: 'Â¥''.

Le canal de communication a été fermé.

---------------------------
OK
---------------------------



I use the 1.2 beta 1.0 version, with PureBasic 3.91 and jaPBe 2.4.6.14

I have uninstalled and reinstalled all, but the problem are always present.

With my older versions of PureBasic and TailBite, i had no compilation problems.

Chris :)
Make sure you have lcclib.exe in the Library SDK folder.

- np

Posted: Thu Jul 15, 2004 4:33 pm
by Chris
I have put the lcclib.exe in the Library Sdk folder, but the problem are always there :cry:

Chris :)

..

Posted: Thu Jul 15, 2004 4:53 pm
by NoahPhense
Chris wrote:I have put the lcclib.exe in the Library Sdk folder, but the problem are always there :cry:

Chris :)
I dunno then.. could be your editor.. its say that a file could not be
found??

Maybe El knows.

- np

Posted: Thu Jul 15, 2004 5:42 pm
by Paul
Make sure in TBManager you do not have "Generate Build Batch File" checked. This is one of the bugs EL_Choni and I tracked down in a testing session.

Posted: Thu Jul 15, 2004 6:04 pm
by Chris
All case are unchecked.

But if i check "Don't build library...", i don't have the message, and if i check "Don't build library..." and "Keep source files....", the sources are created.

Chris :)

Posted: Thu Jul 15, 2004 7:50 pm
by Chris
I think i have found where is the problem.

i had created a procedure " _Init()" , and i thought i must create a procedure "_End()" .
Then, i created a empty procedure. :oops:

Apparently, TailBite don't like this :lol:

I have deactivated the procedure "_End()", and TailBite make the compilation

Thanks you for all your answers :wink:

Chris :)

Posted: Fri Jul 16, 2004 7:11 pm
by Karbon
El - You need a forum of your own for this project!

I'm taking down purebasic.org in it's current form and going to move it to a more community based system. One thing I'm going to do is provide some forums for anyone that wants one. If you're interested please let me know.

Posted: Sun Jul 18, 2004 10:43 pm
by Comtois
Hi El Chroni

i try this code with a = 1 to 1000 , then i use tailbite with TestTailbite1.pb , i got an error .
Then i try with a = 1 to 10 , and all is ok , no error , and the library is create.

I suppose tailbite don't like lot of ( many ) lines ?

Code: Select all

If CreateFile(0,"TestTailbite1.pb") 
  For a= 1 To 1000 
    WriteStringN("Procedure Test" + Str(a) + "()") 
    WriteStringN(" b = 0") 
    WriteStringN("EndProcedure")  
  Next a 
  CloseFile(0) 
EndIf