I welcome the rebirth, Marco!
PaPi
Search found 114 matches
- Sat Dec 13, 2014 11:13 am
- Forum: examples
- Topic: fnxBasic runs Great , but no go for BerbelEdit
- Replies: 6
- Views: 27039
fnxBasic runs Great , but no go for BerbelEdit
Hello Vern and Angel, there are some bad file names in folders BerbelEdit, and BerbelEditRecursos.For example the name "CerrarPestaĄa.bmp" ,I corrected as "CerrarPestańa.bmp" , so the program run.There are some filename like this...My suggest:I think it would be better to use o...
- Thu Jun 19, 2014 5:29 pm
- Forum: General category
- Topic: parameter passing
- Replies: 4
- Views: 11827
parameter passing
I mean, it`s okay. But that`s not the problem.In my test program (param.bas) a subroutine (named sub omd) call another one (named sub wr), and the values of the actual parameters does not appear correctly (not always correctly) on the called subroutine.See my program, and run it please!Also, the que...
- Wed Jun 18, 2014 11:59 am
- Forum: General category
- Topic: parameter passing
- Replies: 4
- Views: 11827
parameter passing
My code has a sense of fault (replaced "bad" and "good"), please, consider replacing this new code:[code]`param.bas by PaPi 17-06-2014object mainform as form width=200 left=200 center onmousedown=omd showmodalend objectsub omd(b as integer,sh as integer,u as integer,v as integer)...
- Tue Jun 17, 2014 7:59 pm
- Forum: General category
- Topic: parameter passing
- Replies: 4
- Views: 11827
parameter passing
I believe that there is something wrong With fnxcompiler(21.12.2013): I do not know, the parameter passing of subroutines or/and functions how is it done? By value, or by address in fnxbasic?For me it caused trouble several times, and unexplained phenomena encountered.Here an test:[code]`param.bas b...
- Fri Jun 13, 2014 7:21 pm
- Forum: General category
- Topic: Functions inside types
- Replies: 2
- Views: 10093
Functions inside types
Hi, this error occurred for me too. Bat It would be good to know the reason...
PaPi
PaPi
- Thu Jun 12, 2014 3:03 pm
- Forum: General category
- Topic: My problem with keyword TYPE
- Replies: 0
- Views: 16683
My problem with keyword TYPE
There are this program (from fnybasic help), but does not work as it should. According to the fnxcompiler:"error 8 line 16 `LEFT` not declared/unknown"Why? "left" is a propertie of panel, also propertie of mypanel too, on my opinion.The program:[code]type mypanel as panel d...
- Thu Jun 05, 2014 7:57 pm
- Forum: General category
- Topic: There is an error in a sample program?
- Replies: 1
- Views: 7260
There is an error in a sample program?
I tried one of the sample program: examplesgraphicspie.basThe program source:-----------------------------------------------object myform as form onpaint=testend objectmyform.showmodalsub test dim x as integer,y as integer,r as integer x=myform.clientwidth/2 y=myform.clienthe...
- Wed Apr 16, 2014 4:00 pm
- Forum: General category
- Topic: scope of dim statements
- Replies: 2
- Views: 8031
scope of dim statements
Thank you very mutch.
In short, can not use the same name for a global variable and a local variable at the same time. So this is a FNXBASIC features, as it is usually not the case (in other languages[ch8203][ch8203]).
best regards
PaPi
In short, can not use the same name for a global variable and a local variable at the same time. So this is a FNXBASIC features, as it is usually not the case (in other languages[ch8203][ch8203]).
best regards
PaPi
- Wed Apr 16, 2014 12:50 pm
- Forum: General category
- Topic: scope of dim statements
- Replies: 2
- Views: 8031
scope of dim statements
I`ve an problem:In this program:`--------------------------------`dimtest by PaPi 16-04-2014dim i as integerdim j as integeri=10j=20sub testsub(jj as integer) dim i as integer i=jj+jj showmessage str$(i)end subtestsub(j)showmessage "end"+str(i)`-----------------------------The fnxcompiler ...