Search found 6 matches

by RobG
Fri Oct 20, 2017 5:51 pm
Forum: General category
Topic: Progress of new version
Replies: 8
Views: 53200

Progress of new version

Me too waiting.
by RobG
Wed Apr 11, 2012 9:31 pm
Forum: examples
Topic: FNXBasix 64Bit
Replies: 1
Views: 4157

FNXBasix 64Bit

Is FNXBasic gonna run under 64bit machines and i do not mean in 32 bit compatibility modus.
by RobG
Tue Dec 16, 2008 8:49 pm
Forum: General category
Topic: Random files
Replies: 0
Views: 5124

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.
by RobG
Tue Dec 16, 2008 8:43 pm
Forum: General category
Topic: Sub ... End sub
Replies: 4
Views: 5927

Sub ... End sub

PaPi,

Thanks, it works. Now it`s all clear to me.
by RobG
Fri Dec 12, 2008 11:10 pm
Forum: General category
Topic: Sub ... End sub
Replies: 4
Views: 5927

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)
by RobG
Thu Dec 11, 2008 12:38 pm
Forum: General category
Topic: Sub ... End sub
Replies: 4
Views: 5927

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...