Qbasicnews.com
FBIde 0.3.1 -> 0.3.3 - Printable Version

+- Qbasicnews.com (http://qbasicnews.com/newforum)
+-- Forum: Qbasic "like" compilers/interpreters (http://qbasicnews.com/newforum/forum-5.html)
+--- Forum: FB Discussion & Programming Help (http://qbasicnews.com/newforum/forum-15.html)
+---- Forum: FB Projects (http://qbasicnews.com/newforum/forum-16.html)
+---- Thread: FBIde 0.3.1 -> 0.3.3 (/thread-5176.html)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22


FBIde 0.3.1 -> 0.3.3 - VonGodric - 01-30-2005

but does it crash the moment you select run, or?

and btw, only one program can be run at a time (had to disable it, becouse it would crash anyway)


FBIde 0.3.1 -> 0.3.3 - Dr_Davenstein - 01-30-2005

No, it runs the program fine. When the program ends, the exit code window pops up, and then I close it... then it crashes.


FBIde 0.3.1 -> 0.3.3 - VonGodric - 01-30-2005

please try this and tell me, do you still get the error: www.hot.ee/freebasic/FBide.rar -just overwrite the fbide.exe


FBIde 0.3.1 -> 0.3.3 - Dr_Davenstein - 01-30-2005

As far as I can tell, you fixed it! Tongue


FBIde 0.3.1 -> 0.3.3 - VonGodric - 01-30-2005

Smile good -strange it disn't produce errors last time :???: -couse I haven't touched this in ages...


FBIde 0.3.1 -> 0.3.3 - mipooh - 01-30-2005

For me it is fixed too..
Thx
Mipooh


FBIde 0.3.1 -> 0.3.3 - VonGodric - 01-30-2005

In the next version:
in the IDE\ will be a folder Docs\
where you will be able to add any files (.chm, .txt, .html, etc...) that you wish to appear in the help menu. It's easy this way -I think. filename with: Default_xxx.xxx (where xxx.xxx is any name/extension) will be opened by default when you press F1

Will that solution be okay?


FBIde 0.3.1 -> 0.3.3 - Dr_Davenstein - 01-31-2005

That sounds good. What would really be cool is if you could add support for everything... Say you had a program that uses OpenGL. The beginning of the program would have '$INCLUDE:' gl/gl.bi'. If the compiler could automatically link the appropriate help file, that would be awesome. You could just use the .bi file to display the way the syntax should be structured. :wink:


For instance, if the user is writing a program...


Code:
glNormal3f

If the user hits f1 while on this keyword, it could display the entry from the header file...

Quote:DECLARE SUB glNormal3f ALIAS "glNormal3f" ( BYVAL nx AS GLfloat, BYVAL ny AS GLfloat, BYVAL nz AS GLfloat )

Just like QB. Tongue


FBIde 0.3.1 -> 0.3.3 - dumbledore - 02-01-2005

i'm having a bug in the html formatting; when i convert
Code:
cls
print "hello"
end
i get
Code:
<pre><b>cls</b>
<b>print </b><font color="red">hello"</font>

</pre>
which, besides adding an extra line at the end, removes the first qutoe from the print statement, making the output display roughly:

cls
print hello"
end

edit: forgot about phpbb's auto-tag closing feature... :x


FBIde 0.3.1 -> 0.3.3 - dumbledore - 02-01-2005

ok, done a bit more experimenting, and found another "bug":
when you convert to bbcode, it will cut off the last command if you don't have a new line as the last char in the file. :???:

this doesn't fix the html problem though...