Posted: Wed Apr 19, 2006 7:53 am
Thanks.Flype wrote:see my signature, the jaPBe logo : a mini-gift for you !
I have no idea.Flype wrote:gnozal do you know how many times jaPBe V3 has been downloaded ?
http://www.purebasic.com
https://www.purebasic.fr/english/
Thanks.Flype wrote:see my signature, the jaPBe logo : a mini-gift for you !
I have no idea.Flype wrote:gnozal do you know how many times jaPBe V3 has been downloaded ?
Not in the current version. I will keep it in mind for the next version.Flype wrote:first time i tested, i didn't understand what triggers were for, but now i've understood and it's very useful. thank you.
about configuring tools :
is it possible to restart the compiler after running a tool ?
I will see if it can be done for the next version.Flype wrote:about the calculator (Alt+C) :
is it possible to add the calculation of pb constants ?
at the moment we can do :
(1+2+3) -> 6 ( and the result is pasted in clipboard - nice feature )
could this be possible (?) :
(#PB_Compiler_Version+1) -> 5.0 ( for example )
Code: Select all
Command = C:\Programme\PBSourceConverter\PBSourceConverter.exe
Arguments = PB394toPB400 "%FILE" "%TEMPFILE"
WorkingDir =
MenuItemName = PB3.94 to PB4.00
Shortcut =
Flags = 3
ReloadSource = 1
HideEditor = 0
IsPlugIn = 0
Menu = 0
Language = 0
Hide = 0
inc. wrote:I duplicate that. Everytime if an "If" followed by an "And" in the same line appears, then a new fold starts.RemyMeier wrote:And this one starts a fold
Code: Select all
If *this\Name And EndIf
Yes, and I cannot reproduce the problem : when I paste the above code in the current jaPBe [3.6.4.503], I don't see any fold.inc. wrote:Hi Gnozal, did you had an eye on my post further above ... ?inc. wrote:I duplicate that. Everytime if an "If" followed by an "And" in the same line appears, then a new fold starts.RemyMeier wrote:And this one starts a fold
Code: Select all
If *this\Name And EndIf
I used this code as test pluginAL90 wrote:@gnozal
In your current version some Tools plugins will no longer work.
In previously versions (496?) it works correct. Here the Plugin
from my Converter what I have configured in jaPBe.
If I select "jaPBe Start" in Trigger it works fine, and with "None" it works nothing. Some Ideas?
Code: Select all
a$ = ProgramParameter()
While a$
b$ = b$ + " : " + a$
a$ = ProgramParameter()
Wend
MessageRequester("PLUGIN-TEST", b$)
Code: Select all
[Tool_23]
Command = C:\PureBasic400\Program\Plugin-test.exe
Arguments = PB394toPB400 "%FILE" "%TEMPFILE"
WorkingDir =
MenuItemName = Plugin test
Shortcut =
Flags = 1
ReloadSource = 1
HideEditor = 0
IsPlugIn = 0
Menu = 0
Language = 0
Hide = 0
Trigger = 0
Code: Select all
ENABLEOOP
DISABLEOOP
Class
EndClass
I don't see the modified jaPBe source code in the download ?inc. wrote:Update: Yesterday I recognised that this only happens if Hallodri's OOP Plugin support is used, means the Plugin comes with a jaPBe Version where the Keywords "Class" "EndClass" (these need folding) and "EnableOOP" "DisableOOP" (no folding) have been added for Highlightning. That one also imho is used by Remi.