jaPBe 1.4.4.25

Developed or developing a new product in PureBasic? Tell the world about it.
Dare2
Moderator
Moderator
Posts: 3321
Joined: Sat Dec 27, 2003 3:55 am
Location: Great Southern Land

Post 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.
Chris
User
User
Posts: 60
Joined: Wed Jun 11, 2003 4:54 pm
Location: Somewhere... But i can see you!

Post 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 :)
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) ;)
GPI
PureBasic Expert
PureBasic Expert
Posts: 1394
Joined: Fri Apr 25, 2003 6:41 pm

Post 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.
Chris
User
User
Posts: 60
Joined: Wed Jun 11, 2003 4:54 pm
Location: Somewhere... But i can see you!

Post 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 :)
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) ;)
User avatar
blueznl
PureBasic Expert
PureBasic Expert
Posts: 6166
Joined: Sat May 17, 2003 11:31 am
Contact:

Post by blueznl »

gpi, just a suggestion for japbe: can compiler statements compilerif / comipiler case etc. be indented as well?
( PB6.00 LTS Win11 x64 Asrock AB350 Pro4 Ryzen 5 3600 32GB GTX1060 6GB)
( The path to enlightenment and the PureBasic Survival Guide right here... )
GPI
PureBasic Expert
PureBasic Expert
Posts: 1394
Joined: Fri Apr 25, 2003 6:41 pm

Post 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
User avatar
blueznl
PureBasic Expert
PureBasic Expert
Posts: 6166
Joined: Sat May 17, 2003 11:31 am
Contact:

Post 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...
( PB6.00 LTS Win11 x64 Asrock AB350 Pro4 Ryzen 5 3600 32GB GTX1060 6GB)
( The path to enlightenment and the PureBasic Survival Guide right here... )
Post Reply