I could not find a form stay on top command.
Also I am presently using Rapidq so I was wondering if there is a code/syntax
convertor so I could use the wealth of RQ files I have.
Hi to all,
there is a way to compile without fnxeditor or fnxdesigner?
I want something like "fnxcompile nomefile.bas" in command prompt.
My wish is to compile using another editor and, possibly, capture the errors.
Thanks in advance.
Bye
Hello everyone. This is my first post here. My question is this. In
other Basic languages that I have used combining ;(semi-colon), (,
(comma)) with a "Print" statement is used to format the output. I
cannot get them to work with fnxBasic. Am I missing something?
Mel
> Is mysql properly installed? The examples run on my computer.
MySQL works great with every other application/language I use it with.
There is a problem with GPF's and a 217 errors in many of the example
programs I have tried.
I think FnxBasic has a bright future and looking forward to seeing it
evolve.
Thanks for your responses to my posts.
John
there is choosen not to detect runtime errors it will cost the speed
of the program.
Is mysql properly installed? The examples run on my computer.
Debugging runtime errors are difficult if possible i will build in
an option for it.
And I think you could better use delphi because fnxbasic does not
provide everything you want to program. After all t is a beginners
language for now on.
com: i don't know maybe in the future.
best regards
--- In fnxbasic@yahoogroups.com, "John Spikowski"
<johnspikowski@...> wrote:
>
> It seems the MySQL demo isn't the only example that GPF's and
gives a 217
> errors.
>
> Maybe I should have taken the hint of no activity in the list
archives that
> this Basic isn't ready for prime time yet. You would think the
examples
> provided would at least work. :-(
>
> Oh well, I'll keep and eye on FnxBasic and hope the next release
is more
> stable.
>
>
> John
>
It seems the MySQL demo isn't the only example that GPF's and gives a 217
errors.
Maybe I should have taken the hint of no activity in the list archives that
this Basic isn't ready for prime time yet. You would think the examples
provided would at least work. :-(
Oh well, I'll keep and eye on FnxBasic and hope the next release is more
stable.
John
Is there any plans to add COM support to FnxBasic?
Has anyone mentioned FnxBasic on the RapidQ forums yet? I would think
FnxBasic would be welcome news.
John
>
> hi,
> i've uploaded a new lbb file with a resourced manifest.
> just compile your app with this one and you do not need to
> add the manifest wityh your app.
> best regards
>
Thank You !
John
> > I think the problem is in mysql.lib, just open it (notepad) > and replace the 'open' command with 'mysql.open' > there is a conflict with the basic function open. > I hope this will work > best regards >
I didn't notice the error message box before sending my last e-mail.
> I think the problem is in mysql.lib, just open it (notepad) > and replace the 'open' command with 'mysql.open' > there is a conflict with the basic function open. > I hope this will work > best regards >
I made the change as your recomended but I now getting a GPF with the generated program.
I think the problem is in mysql.lib, just open it (notepad) and
replace the 'open' command with 'mysql.open'
there is a conflict with the basic function open.
I hope this will work
best regards
--- In fnxbasic@yahoogroups.com, "John Spikowski"
<johnspikowski@...> wrote:
>
> > hi,
> > I think you use the basic command open that expects a string
> > for a document.
> > You must declare the dll calls you want to use first ie :
> > declare aliasname as SetFocus of dllname
> > var as integer
> > var2 as string*25
> > end declare
> >
hi,
i've uploaded a new lbb file with a resourced manifest.
just compile your app with this one and you do not need to add the
manifest wityh your app.
best regards
--- In fnxbasic@yahoogroups.com, "John Spikowski" <johnspikowski@...>
wrote:
>
> List,
>
> Is there a way to add the XP manifest as a resource?
>
> It's a pain to have to create a seperate manifest file of each .exe
your
> create.
>
> John
>
> hi,
> I think you use the basic command open that expects a string
> for a document.
> You must declare the dll calls you want to use first ie :
> declare aliasname as SetFocus of dllname
> var as integer
> var2 as string*25
> end declare
>
> then set the vars
> aliasname.var=9786786789
> aliasname.var2="kjghkjjhkjhjk"
> aliasname''the actual call
Thanks for your response but I'm talking about the MySQL demo that comes
with the FnxBasic.
As soon as I try to run it using the login info for my MySQL server, a red
line at the top of the page says:
"error:45 line:14 openopen is not a valid operator"
''example of the use of mysql
''instal mysql anonymious, without a password and user.
''for encription is needed more than this example.
''mysql is an freeware database server
uses mysql
object myform as form
object grid as stringgrid
align=alClient
separator=chr$(8)
end object
end object
dim db as mysql
db.separator=grid.separator
db.address="127.0.0.1" <<--- ERROR POINTS HERE !!! (also tried localhost)
db.port=3306
db.user="root"
db.password="xxxxxxx"
showmessage db.query("connect")
db.query("create database if not exists mydbase")
db.query("use mydbase")
db.query("create table if not exists mytable(name CHAR(10),zipcode
char(10),address char(20))")
db.query("INSERT INTO mytable (name,zipcode,address)
VALUES('john','1234','bublestreet')")
db.query("INSERT INTO mytable (name,zipcode,address)
VALUES('mike','5678','teststreet')")
grid.Text=db.query("Select * from mydbase.mytable")''*=everything
myform.showmodal
hi,
I think you use the basic command open that expects a string for a
document.
You must declare the dll calls you want to use first ie :
declare aliasname as SetFocus of dllname
var as integer
var2 as string*25
end declare
then set the vars
aliasname.var=9786786789
aliasname.var2="kjghkjjhkjhjk"
aliasname''the actual call
here is an example how to use the tab:
object f as form
object t as tabcontrol
onchange=tab_change
tabs(0)="tab0"
tabs(1)="tab1"
object pan0 as panel
align=alClient
caption="panel0"
object b as button
caption="panel0"
end object
end object
object pan1 as panel
visible=False
align=alClient
caption="panel1"
end object
end object
end object
f.showmodal
sub tab_change()
select case t.TabIndex
case 0
pan0.visible=true
pan1.visible=False'' set other panels also to false if there
are more.
case 1
pan1.visible=True
pan0.visible=False'' set other panels also to false if there
are more.
end select
best regards
--- In fnxbasic@yahoogroups.com, "John Spikowski"
<johnspikowski@...> wrote:
>
> List,
>
> I started working with FnxBasic the other day and find it
refreshing and
> well thought out. This is a big change from working with HotBasic.
>
> Q. I get a 'openopen' error on the address parameter for the MySQL
example.
> I would really like to try FnxBasic with the MySQL API.
>
>
> Q. Is there a way to assign controls to a panel object and
hide/show the
> panel rather then each control separately when working with the
tab control?
>
> I really like the FnxDesigner and wanted to thank the author for a
job well
> done.
>
>
> John
>
List,
I started working with FnxBasic the other day and find it refreshing and
well thought out. This is a big change from working with HotBasic.
Q. I get a 'openopen' error on the address parameter for the MySQL example.
I would really like to try FnxBasic with the MySQL API.
Q. Is there a way to assign controls to a panel object and hide/show the
panel rather then each control separately when working with the tab control?
I really like the FnxDesigner and wanted to thank the author for a job well
done.
John
Hi List,
I just added FnxBasic to the All Basic site. It would be great if the
list members here could post example code to the FnxBasic code project
board.
http://www.allbasic.info/forum
Thanks for advocating for FnxBasic on All Basic.
John Spikowski
All Basic Admin.
support@...
Hi I think you can look for basic programs with google.
Also examples of visual basic etc can be usefull.
For the use of api calls you can search the web.
I hope you find somthing.
Best regards
Other than what comes with the fnxbasic zip, is there any other places
where I can find more examples of source code? I learn much faster
with good examples.
TIA
lBl
ok, thanks,
by the answer,
I will wait, new working.
--- In fnxbasic@yahoogroups.com, "byteshaper" <byteshaper@...> wrote:
>
> --- In fnxbasic@yahoogroups.com, "jesse_hernandes"
> <jesse_hernandes@> wrote:
> >
> > when new versions of FNXBasic
> >
> Sorry I can not tell when, if it is finished and working of course.
> I am busy to add the windows objects right now.
> best regards
>
--- In fnxbasic@yahoogroups.com, "jesse_hernandes"
<jesse_hernandes@...> wrote:
>
> when new versions of FNXBasic
>
Sorry I can not tell when, if it is finished and working of course.
I am busy to add the windows objects right now.
best regards
Hi,
I use winxp prof too, with service pack2 installed without a problem.
I think you must find an answer in the rights of your account.
It must be administator rights otherwise fnx can not compile.
Or you have a virus or spyware or trojan who blocks the
administrator rights.
hope you find an answer, best regards
--- In fnxbasic@yahoogroups.com, "marc_lacrosse" <chess.bazaar@...>
wrote:
>
> Hi all.
>
> I cannot get any example compiled from within the editor.
>
> And when I launch fnxcompiler.exe in a command window I get an
> immediate error message just after the following line has been
printed
> in the console window :
> FNXBasic compiler (C) Marco Waterman 2006
>
> In the windows error message content there are the following
> informations :
>
> AppName : fnscompiler.exe
> AppVer: 0.0.0.0
> ModName: kernel32.dll
> ModVer: 5.1.2600.3119
> Offset: 00012a5b
>
> So there seems to be a problem when calling kernel32.dll
>
> I use windows XP pro 32bits with sp2 , language : french.
>
> Any idea ?
>
> Thanks
>
> Marc
>
Hi all.
I cannot get any example compiled from within the editor.
And when I launch fnxcompiler.exe in a command window I get an
immediate error message just after the following line has been printed
in the console window :
FNXBasic compiler (C) Marco Waterman 2006
In the windows error message content there are the following
informations :
AppName : fnscompiler.exe
AppVer: 0.0.0.0
ModName: kernel32.dll
ModVer: 5.1.2600.3119
Offset: 00012a5b
So there seems to be a problem when calling kernel32.dll
I use windows XP pro 32bits with sp2 , language : french.
Any idea ?
Thanks
Marc