Qbasicnews.com

Full Version: FBIde 0.4
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7
Now I feel dumb. :-? Thanks! Smile
yay! new IDE. one question though - Where are the minimizer things? you know how you could press the + or - to expand/shrink loops/subs etc., is that an option i can turn on? That was in .33, but i don't see it in .4. If its not :roll: , please put it in the next version. Smile BTW, awesome job on the IDE, I love it. :rotfl:
search seems to be missing the end of search pop up..

but again i cant stress enough,, EXCELLENT WORK, and many thanks to victor,, with him none of this would not be possible. My hat goes off to you sir, thank you.
Quote:
retsyo Wrote:bug?
open 1 files, compile and run
open another one, run it, but only 1.exe runs

I have been unable to duplicate this.
These are the steps I take:
1. Open 1.bas
2. Compile and run 1.bas
3. Open 2.bas
4. Compile and run 2.bas - It does run this one

Could you explain what you did in more detail? Can you duplicate the problem at will?
Yes
1.lauch FBIde
2.open ..\FreeBASIC 1.3\examples\gfx\mandbrot.bas
3.menu "run->compile&run", mandbrot.exe is compiled and runs
4.press esc to return to FBIde
5.open ..\FreeBASIC 1.3\examples\gfx\va_strings.bas
6.run->run, mandbrot.exe runs; but run->quick run, va_strings runs. I think this is the problem
another problem: where is the recent file list?
Run executes previously compiled file. It's not a bug.

Filehistory is somewhere on to do list.

In sub function search -it doesn't invlude multiline stuff. Only line wher function/sub ... is. Also to search use [func+ ...| sub+ ...]
Any reason why this program refuses to compile with FBIDE 0.4, drag and drop didn't work either.

I tried it in BE (basic editor) and it worked fine, drag and drop works fine again as well.

Code:
DECLARE FUNCTION stall (sleepertime)

stall 10

FUNCTION stall (sleepertime)
    
    T = TIMER + sleepertime
    WHILE T! <= T
    key$ = INKEY$
    T! = TIMER
    IF key$ <> "" THEN GOTO stallexit
    WEND

stallexit:

END Function

(i'm trying to make a sleep command that doesn't pass on the inkey$, dunno why)
Compiled and worked fine here.
could the fact that i'm running fbide and fbc on a portable device (my ipod mini) effect anything?
It might, I would depend on how certain things are accessed. That's how you've been running it for a long time though isn't it? What error does it give you?
Pages: 1 2 3 4 5 6 7