Page 1 of 2
Next Release of FnxBasic?
Posted: Mon Nov 04, 2013 10:56 am
by Darren
Marco,
Can you give any indication for the next release date for FnxBasic?
Will it include my suggestion InstrRev?
One problem with FnxBasic is the following.....
If you had a project containing many ".inc" files if an error occurs on any of the ".inc" files, FnxBasic does not tell the user what file contains the error.
Regards
Darren
Next Release of FnxBasic?
Posted: Wed Nov 06, 2013 3:52 pm
by Marco
This year ther become an update, The bugs you mentiont are fixed then, i hope.
I `ve to add some more of the wishlist before the update and prepare and check it.
best regards
Next Release of FnxBasic?
Posted: Sat Nov 09, 2013 4:45 pm
by Marco
Hi, I think you can do it with rinstr().
if you wat the specified character you do c=char$(rinstr(mystring,"test"))
hope this will help?
best regards
Next Release of FnxBasic?
Posted: Mon Apr 28, 2014 2:34 pm
by Darren
Marco,
Are you going to release an update of FNXbasic in the near future?
I was wondering if you are going to add InstrRev?
I am trying to extract the filename from a path. For example
I need to extract the filename "Test.dwg" from the path
"N:EngineeringDrawingsCad DrawingsDrawingsTest.dwg"
I was going to use InstrRev to find the last "" in the path so that I can extract the filename.
Many thanks!!!!!
Darren
Next Release of FnxBasic?
Posted: Mon Apr 28, 2014 3:15 pm
by Marco
Right now i`m busy with a new fnx basic, more flexible, faster and smaller but that take some time.
revstr already exists in fnx it is the function rinstr()
so to get the filename you can do:
dim fil as string
fil="c:jhjhjlala.jgh"
fil=right$(fil,len(fil)-rinstr(fil,""))
maybe you must do rinstr-1 I did not tried it.
rinstr(fi,"") gives the position of the last in the string.
best regards
Next Release of FnxBasic?
Posted: Tue Aug 19, 2014 7:08 am
by Darren
Marco,
Can you give any indication for your next release of FnxBasic?
Looking forward to its release!!!!!
Regards
Darren
Next Release of FnxBasic?
Posted: Mon Nov 24, 2014 3:54 pm
by Bob Hays
Yes - any news on the new version?
Anxiously awaiting :D
Will the new version support user defined and nested user defined data types?
If you are keeping the Record and Type functions the same you could use "UDT" and the command.
something like...
<CODE>
UDT loc_t
as integer x,y,z
end UDT
UDT udtname2
as loc_t loc
end UDT
</CODE>
Once again Anxiously awaiting :D
Next Release of FnxBasic?
Posted: Tue Mar 24, 2015 9:05 am
by Darren
Marco,
Do you have a possible release date for the next release of FnxBasic?
Will it create 64 bit "exe" files?
Regards
Darren
Next Release of FnxBasic?
Posted: Tue Apr 21, 2015 10:47 am
by minhyac66
Hello Darren,
FNXBasic works perfectly under 64bit, and I can create "exe" files with no problems !
My PC is under Windows 8.1 and 64 bits.
Regards
minhyac66 8-)
Next Release of FnxBasic?
Posted: Tue Apr 21, 2015 3:27 pm
by Darren
Hi,
I am also using FnxBasic applications on windows 8.
FnxBasic can only compile 32 bit exe files not 64 bit.
Hopefully, on the next release FnxBasic would be able to create full 64 bit "exe" files!
Darren