Hello,
I had a quick look and this interpreter seems simple and logical but the help files (English) are ambiguous in many places.
Perhaps I could do a translation for you. I would have to get used to FNXBasic first so that I can sort out the ambiguity (dual conflicting meanings) by testing with code.
I see that FNXBasic supports network connections at a socket level and also mySQL however I did not see any HTTP or HTTPS (SSL) support and there is no encryption algorithms. I would have expected at least MD5 encryption. Are any of these supported?
Also, I did not see any functions to expand the function list at a Windows API level. Does this exist as well?
Thanks, Rob.
tech at ozwebwiz dot com
Offer to translate help files.
Offer to translate help files.
Hi,
This is a simple hobby project.
There is no encryption because I did not find the right module for it. The socket is a base component to transfer a string or text from one to another computer with the tcp/ip standard.
The api can be called with a dll call. But you must first declare the api it look like this:
declare setfocus as "SetFocus" of "User32.dll"
hwnd as integer
end declare
setfocus.hwnd=myform.hwnd
setfocus
mysql communicates over a tcip port but into the future i will let fnxbasic support sql.
This is a simple hobby project.
There is no encryption because I did not find the right module for it. The socket is a base component to transfer a string or text from one to another computer with the tcp/ip standard.
The api can be called with a dll call. But you must first declare the api it look like this:
declare setfocus as "SetFocus" of "User32.dll"
hwnd as integer
end declare
setfocus.hwnd=myform.hwnd
setfocus
mysql communicates over a tcip port but into the future i will let fnxbasic support sql.