Search found 7 matches

by denise_amiga
Mon Jul 27, 2009 7:46 pm
Forum: PureFORM & JaPBe
Topic: jaPBe 3.13.4 [IDE for PB 4 and PB 5]
Replies: 1545
Views: 690237

bug in autocomple

hi gnozal

autocomplete with structures is "buggy"

Code: Select all

Structure aa
    a.s  ;<- Indentation with real tab
    b.l
EndStructure

bb.aa

bb\         <--- window show chr(9)
by denise_amiga
Fri Aug 25, 2006 9:35 pm
Forum: Coding Questions
Topic: progressbar in listicon?
Replies: 1
Views: 849

progressbar in listicon?

how?
or progressbar in statusbar?

thx
by denise_amiga
Sat Aug 12, 2006 2:15 am
Forum: Coding Questions
Topic: PB4 - what´s wrong?
Replies: 10
Views: 1803

Num3 wrote:x+1 increases x in 1

debug x+1 just prints (x + 1) and does not increase it, because the debug command has priority and the result is not considered an operation just a print out of X variable + 1...
ok, and thx
by denise_amiga
Fri Aug 11, 2006 4:28 pm
Forum: Coding Questions
Topic: PB4 - what´s wrong?
Replies: 10
Views: 1803

PB4 - what´s wrong?

Code: Select all

tst=0
Debug tst+1
Debug tst+1
Debug tst+1
result:
1
1
1
by denise_amiga
Thu Jul 27, 2006 4:52 pm
Forum: PureFORM & JaPBe
Topic: jaPBe 3.13.4 [IDE for PB 4 and PB 5]
Replies: 1545
Views: 690237

i test it new beta (549) and it´s ok :D no crash

thx

pd: sorry for my english
by denise_amiga
Thu Jul 27, 2006 11:41 am
Forum: PureFORM & JaPBe
Topic: jaPBe 3.13.4 [IDE for PB 4 and PB 5]
Replies: 1545
Views: 690237

crash

1.- open japbe
2.- import(return)
3.- ---crash---

pd. config: all default.
os: winxp sp2
version: jaPBe 3.6.7.548
by denise_amiga
Wed Jul 26, 2006 11:57 am
Forum: Coding Questions
Topic: floats bug?
Replies: 2
Views: 781

floats bug?

Code: Select all

    #count = 10000000
    x.f = 1
    y.f = 1.000001
    For i = 1 To #count
        x = x * y
    Next
    Debug x
    
    xx.d = 1
    yy.d = 1.000001
    For i = 1 To #count
        xx = xx * yy
    Next
    Debug xx
x = 13669.287109375
xx = 22026.355644709398