Page 3 of 3

Posted: Fri Apr 30, 2004 1:45 am
by Dare2
Hi GPI,
The problem is, that the line of the "End"-Procedure must not be after the line of the "Start"-Procedure.
Okay, understand. Thanks.
You can aktivate/deaktivate the auto-indent with F9 very fast.
Neat. :)
At the moment not.
No problem, it is pretty intuitive. Was just looking for the fine-tuning. :)

Thanks again.

Posted: Fri Apr 30, 2004 11:10 am
by Chris
Hi all :)

I don't know if it's a right place for this post, i'm sorry! :wink:

I've downloaded the new version of jaPBe, but I have a small problem.

With the previous versions, when I click a constant, (or a variable), in the panel to the right, the constant,(or variable), are written in the code, at the place of cursor.
This function don't work with the new version. :(

Why?. It's a bug ?

Chris :)

Posted: Fri Apr 30, 2004 5:47 pm
by GPI
Chris wrote:With the previous versions, when I click a constant, (or a variable), in the panel to the right, the constant,(or variable), are written in the code, at the place of cursor.
This function don't work with the new version. :(
Something internal in PB has changed. I will fix this.

Posted: Fri Apr 30, 2004 5:59 pm
by Chris
GPI wrote:Something internal in PB has changed. I will fix this.
Thank you GPI
(For your answer and for jaPBe too)

Chris :)

Posted: Fri May 28, 2004 9:38 am
by blueznl
gpi, just a suggestion for japbe: can compiler statements compilerif / comipiler case etc. be indented as well?

Posted: Fri May 28, 2004 5:34 pm
by GPI
blueznl wrote:gpi, just a suggestion for japbe: can compiler statements compilerif / comipiler case etc. be indented as well?
no, because

Code: Select all

compilerif #debug
if a>10 and a<20
compilerelse
if a<20
compilerendif

Posted: Fri May 28, 2004 7:51 pm
by blueznl
that's not much of a reason :-) see what japbe turns that into:

Code: Select all

CompilerIf #debug 
If a>10 And a<20 
  CompilerElse 
  If a<20 
    CompilerEndIf 
so, it wouldn't matter much if the compiler statements would be indented, if you observe what happens above...