Hi all!
CHERRY Form Designer for FNXBasic!
I used JustBasic and modified the Free Form code.
You may find it at https://cherryfnx.wordpress.com/26-2/
Please look at Readmfirst!!!.txt
Cheers!
Frank
Search found 4 matches
- Wed Feb 13, 2019 6:35 am
- Forum: General category
- Topic: FNXBasic form designer (CHERRY)
- Replies: 0
- Views: 49852
- Mon Jan 21, 2019 11:22 am
- Forum: General category
- Topic: FNXBasic and SQLite3
- Replies: 5
- Views: 45244
Re: FNXBasic and SQLite3
I think it should be: sql3open.db=db1 The code suggested doesn't work either. I get the message: Runtime error at position 1959 Access violation at address 6091A24B in module 'sqlite3.dll'. Write of address 00000000 The link you mentioned is only for ODBC/MsAccess, not sqlite. Have you succesfully u...
- Fri Jan 11, 2019 8:09 am
- Forum: General category
- Topic: FNXBasic and SQLite3
- Replies: 5
- Views: 45244
Re: FNXBasic and SQLite3
The link mentioned above doesn't work. I have the following problem with this piece of code: dim db1 as integer Declare sql3_open as "sqlite3_open" of "sqlite3.dll" cdecl filename As String db As integer result as integer end declare with sql3_open filename="data.db" db...
- Thu Jan 10, 2019 9:04 am
- Forum: General category
- Topic: Rapid-Q VS FnxBasic
- Replies: 6
- Views: 46588
Re: Rapid-Q VS FnxBasic
What is more, there are resemblences, but the compiler is certainly different. I made the following test Dim i As Integer,k As Integer Dim t As double t=Timer k=0 For i=1 To 10000000 k=k+1 Next i Print Timer-t Do Loop Until Inkey$ <> "" End and found fnxbasic at least 13-14 times faster th...