Search found 6 matches
- Fri Oct 20, 2017 5:51 pm
- Forum: General category
- Topic: Progress of new version
- Replies: 8
- Views: 55755
Progress of new version
Me too waiting.
- Wed Apr 11, 2012 9:31 pm
- Forum: examples
- Topic: FNXBasix 64Bit
- Replies: 1
- Views: 4549
FNXBasix 64Bit
Is FNXBasic gonna run under 64bit machines and i do not mean in 32 bit compatibility modus.
- Tue Dec 16, 2008 8:49 pm
- Forum: General category
- Topic: Random files
- Replies: 0
- Views: 5516
Random files
Is there a way of using random files like Quick Basic or Visual Basic. I mean something like the statement:
Open "test.dat" for random as #1 len=20
I only see an example in the examples directory witch uses the mySQL database.
Open "test.dat" for random as #1 len=20
I only see an example in the examples directory witch uses the mySQL database.
- Tue Dec 16, 2008 8:43 pm
- Forum: General category
- Topic: Sub ... End sub
- Replies: 4
- Views: 6748
Sub ... End sub
PaPi,
Thanks, it works. Now it`s all clear to me.
Thanks, it works. Now it`s all clear to me.
- Fri Dec 12, 2008 11:10 pm
- Forum: General category
- Topic: Sub ... End sub
- Replies: 4
- Views: 6748
Sub ... End sub
Thanks, I will try it, but I think it`s strange that I can`t use a string like "hello world" as a passing value to the sub witch holds the variable to work with in the Sub(routine)
- Thu Dec 11, 2008 12:38 pm
- Forum: General category
- Topic: Sub ... End sub
- Replies: 4
- Views: 6748
Sub ... End sub
I always get the error "sub mytest("hello world")" does not exist. See the code below. What am I doing wrong.Dim myform as formmyform.left=100Dim firstbutton as buttonDim secondbutton as buttonfirstbutton.Caption="OK"secondbutton.Caption="Test"secondbutton.top...