TailBite 1.0 Preview, soon in PureProject and PureArea
Moderators: gnozal, ABBKlaus, lexvictory
- NoahPhense
- Addict
- Posts: 1999
- Joined: Thu Oct 16, 2003 8:30 pm
- Location: North Florida
..
Ah, is that what's happening when I run the manager, and create the libEl_Choni wrote:Fixed. However, in this new version you'll have to restart the compiler manually (from the Compiler menu), I'm still having trouble restarting the compiler from TailBite.
Regards,
from the Make a library button -- and it creates the lib, but then keeps
everything on the form still 'disabled' ? Is that what you mean?
- np
* Excellent on the making the dialog go away..

-
- Enthusiast
- Posts: 613
- Joined: Tue May 06, 2003 2:50 pm
- Location: Germany
- Contact:
I wanted to thank you for this tool. At the beginning I was a little bit sceptical (for example because of too many low-end libs from beginners).
But not for long - believe me it's great.
But a few proposals I still have:
- Could you incorporate a way of telling TailBite which help-file to use? I thought about a meta-comment in the source-files first line ( ; tb_help: mylib.chm). Altering the .desc file each time is very laborious.
- it would be cool if you could generate the resident- and lib-file in one step (2 thoughts: additional stringgadget in TBM or (once again) meta-comments like ; tb_startresident and ; tb_endresident)
- You forgot to mention the _Init and _End functions in the help
What do I have to do, to set the source file automatically at program start (using jaPBe)?
But not for long - believe me it's great.
But a few proposals I still have:
- Could you incorporate a way of telling TailBite which help-file to use? I thought about a meta-comment in the source-files first line ( ; tb_help: mylib.chm). Altering the .desc file each time is very laborious.
- it would be cool if you could generate the resident- and lib-file in one step (2 thoughts: additional stringgadget in TBM or (once again) meta-comments like ; tb_startresident and ; tb_endresident)
- You forgot to mention the _Init and _End functions in the help
What do I have to do, to set the source file automatically at program start (using jaPBe)?
I'd like to avoid having to use extra directives in the source (well, TailBite already uses the comments after the procedure header for the help line).
Regards,
What about this: if it's the first time the library is created (not another lib with the same name found in the userlibs dir) TailBite asks for the help name. Next time, TailBite won't ask: it'll use the name stored in the previous userlib.Could you incorporate a way of telling TailBite which help-file to use? I thought about a meta-comment in the source-files first line ( ; tb_help: mylib.chm). Altering the .desc file each time is very laborious.
Yes, I thought about this. I'll have to choose a solution, either directives as you say or an extension (".res.pb", for example). Or better: if no procedure is found in the code, the file is converted to resident (it would be pointless trying to make a lib with it, so...)- it would be cool if you could generate the resident- and lib-file in one step (2 thoughts: additional stringgadget in TBM or (once again) meta-comments like ; tb_startresident and ; tb_endresident)
So THAT'S the reason why several people asked how to do it XD. I'll add it, thanks for the feedback.- You forgot to mention the _Init and _End functions in the help
Regards,
El_Choni
-
- Enthusiast
- Posts: 613
- Joined: Tue May 06, 2003 2:50 pm
- Location: Germany
- Contact:
Really? I have to check that. Either I've missed or forgotten this dialog or it simply didn't show up.El_Choni wrote: What about this: if it's the first time the library is created (not another lib with the same name found in the userlibs dir) TailBite asks for the help name. Next time, TailBite won't ask: it'll use the name stored in the previous userlib.
Then TB should look for the currently used help-file? But with my X2D library in the .desc it always switches from X2D.chm to X2D.
-
- Enthusiast
- Posts: 613
- Joined: Tue May 06, 2003 2:50 pm
- Location: Germany
- Contact:
Yes, after rereading it, the mist liftsDare2 wrote:I think El_Choni is asking your opinion on whether that is a good way to do things.

That's a good alternative. Thank you for implementing it.
The updater tells me, that I already have this version! Did you forget to change the version-no. or is this still the old one?
-
- Enthusiast
- Posts: 613
- Joined: Tue May 06, 2003 2:50 pm
- Location: Germany
- Contact:
The Public Releases can be obtained here: PureArea -> Projects -> Developer Tools
http://www.purearea.net/pb/download/dev ... te_1_0.zip
http://www.purearea.net/pb/download/dev ... te_1_0.zip
- NoahPhense
- Addict
- Posts: 1999
- Joined: Thu Oct 16, 2003 8:30 pm
- Location: North Florida
CHM
Ok this is the first time I have seen the help file box. Now I've written a lotfreedimension wrote:The Public Releases can be obtained here: PureArea -> Projects -> Developer Tools
http://www.purearea.net/pb/download/dev ... te_1_0.zip
of help files in my days. But I've never linked them to keywords in a
source program, in this case, the PB IDE.
Can you show me how to link my functions?
eg.
When I click F1 while on one of my keywords:
OpenMutex("test")
I want it to open the assigned chm and bring me to the OpenMutex()
function.
- np