Search found 246 matches

by Marco
Sun May 08, 2016 8:50 pm
Forum: General category
Topic: Next Release of FnxBasic?
Replies: 18
Views: 37757

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...
by Marco
Sun May 08, 2016 8:36 pm
Forum: General category
Topic: Progress of new version
Replies: 8
Views: 53100

Progress of new version

still busy programming............
by Marco
Sun May 08, 2016 8:33 pm
Forum: General category
Topic: how to implement the function iif
Replies: 9
Views: 25609

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   ...
by Marco
Fri Dec 18, 2015 8:29 pm
Forum: General category
Topic: Progress of new version
Replies: 8
Views: 53100

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...
by Marco
Fri Dec 18, 2015 8:11 pm
Forum: General category
Topic: Next Release of FnxBasic?
Replies: 18
Views: 37757

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
by Marco
Tue Oct 07, 2014 5:53 pm
Forum: discbugs
Topic: Help
Replies: 3
Views: 8557

Help

Please will you explain what you mean with second row, o the editor or the help file?

best regards
by Marco
Fri Oct 03, 2014 3:30 pm
Forum: discbugs
Topic: Help
Replies: 3
Views: 8557

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...
by Marco
Sat Aug 02, 2014 3:29 pm
Forum: discbugs
Topic: How to close a previous instance?
Replies: 5
Views: 29182

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...
by Marco
Tue Jul 01, 2014 3:32 pm
Forum: discbugs
Topic: RichEditText box not enabled=false on runtime
Replies: 1
Views: 8787

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...
by Marco
Sat Jun 21, 2014 3:10 pm
Forum: General category
Topic: parameter passing
Replies: 4
Views: 10197

parameter passing

I see.... think it is some kind of bug, a work around is to make the wr sub a function.