Search found 246 matches
- Sun May 08, 2016 8:50 pm
- Forum: General category
- Topic: Next Release of FnxBasic?
- Replies: 18
- Views: 34316
Next Release of FnxBasic?
yeah, you could see it like this, last update is decemdber 2013 is almost 2014 soI skipped 2014 and 2015 I work as fast as possible.But it must be special programmed to make it a pure machaine language compiler for the future.If it goes well, this first part it becomes a very compact bytecode compil...
- Sun May 08, 2016 8:36 pm
- Forum: General category
- Topic: Progress of new version
- Replies: 8
- Views: 50922
Progress of new version
still busy programming............
- Sun May 08, 2016 8:33 pm
- Forum: General category
- Topic: how to implement the function iif
- Replies: 9
- Views: 24624
how to implement the function iif
Hi, i did not tested it but you can try something like thisfunction iff(cond as string, val1 as integer,val2 as integer) as integer result=0 select case cond case ">":if val1>val2 then result=1 case "<":if val1<val2 then result=1 ...
- Fri Dec 18, 2015 8:29 pm
- Forum: General category
- Topic: Progress of new version
- Replies: 8
- Views: 50922
Progress of new version
If you noticed it this forum and website is moved to my own server and not hosted by a third party anymore.Right now I am very-very busy to development a new version of fnx basic meaning build a whole new compiler.This will eats a lot of time and puzzling.What i have got so far:A parser that read th...
- Fri Dec 18, 2015 8:11 pm
- Forum: General category
- Topic: Next Release of FnxBasic?
- Replies: 18
- Views: 34316
Next Release of FnxBasic?
Hi, I`m very busy to rewrite the whole thing. This will be a complete new version.
But i do not know when it is finished. It is like a lot of solving, finding the best way to program it. So i can not really give a date.
best regards
But i do not know when it is finished. It is like a lot of solving, finding the best way to program it. So i can not really give a date.
best regards
Help
Please will you explain what you mean with second row, o the editor or the help file?
best regards
best regards
Help
Wich OS / win 7 needs an extra windows file to open chm files. Its present in xp but microsoft abonded it in win 7 the have however a solution for it :http://social.msdn.microsoft.com/Forums/en-US/a19a5564-1047-4921-9c8d-c076d25fe44a/unable-to-open-chm-file-in-windows-7?forum=devdocshope this will h...
- Sat Aug 02, 2014 3:29 pm
- Forum: discbugs
- Topic: How to close a previous instance?
- Replies: 5
- Views: 25937
How to close a previous instance?
Something like this??best regardsDeclare findwindow as "FindWindowA" of "user32"Classname as stringWindowname as stringresult as integerend declare``=============added==============================declare setfocus as "SetForegroundWindow" of user32hwnd as integerend dec...
- Tue Jul 01, 2014 3:32 pm
- Forum: discbugs
- Topic: RichEditText box not enabled=false on runtime
- Replies: 1
- Views: 8310
RichEditText box not enabled=false on runtime
Could be a bug at my side or a windows bug.Here is a work around:OBJECT NewForm AS Form Left=247 Top=119 Caption="New Form" ClientHeight=121 ClientWidth=384 onshow=disableredit `this added could be onpaint as well OBJECT Button1 AS Button &nb...
- Sat Jun 21, 2014 3:10 pm
- Forum: General category
- Topic: parameter passing
- Replies: 4
- Views: 8599
parameter passing
I see.... think it is some kind of bug, a work around is to make the wr sub a function.