I have recently installed (UPGRADED) to OpenSuse 10.2. However I have now found that Xbasic 6.2.3 does not work at all in this version. It worked for about 10 ...
Well, next try to change to xBasic, and new questions to solve. Anybody can help me? I'm trying to share constants, variables and functions from custom library...
On Tue, 03 Jul 2007 15:18:15 -0400, David Silverwood ... XBasic 6.2.3 is not compatible with current versions of Linux. Eddie has an update that should work,...
... First of all, $$vark1 and vark1 are different. Second, you need to export anything that you want the calling program to see. Third, I hope that you're just...
... This usually requires a more detailed investigation into the problem. It sounds like you haven't really pinpointed the exact cause in the SELECT CASE...
Well Steve, one thing I did notice, is that you are only using 384 MB of RAM. You could easily upgrade to at least 1 Gig for less than $50 these days. It...
Steve, my beginning on xBasic is too difficult. I try to understand xBasic structures, but I fail when try to make my programs (my first programming languaje...
Steve: I was looking at your code, and perhaps the problem is the NEGATIVE rotation number. Perhaps the negative value is throwing this out of whack for...
Hi Guys: Thanks for the comments, and I apologise for the delay in responding. Steve, your comment make me think that I was overlooking something obvious, like...
Hello old2newbie, I'm not sure that it are I'm searching. I was finding for more easy examples, and now I need so much time for understanding sources included...
... The easier examples actually came with XBasic, in a subdirectory named demos. In particular, ahowdy.x and aloha.x, one is meant to be compiled as a library...
Steve, I was see aloha & ahowdy files. Both are sample for external call to a .DLL file. I find for "merge" my custom functions, variables and constants,...
... Then you aren't using a DEC file. It helps if you ask the right questions... XBasic doesn't have an include feature, the compiler does not merge code for...
Hi all, I' am in a conversion traject from TB (Borland) to XB and found some strange things. In TB you could use if statements like IF x>#size OR y>#size OR...
... Replace OR with || and AND with &&. XBasic has two types of AND (and OR) operators. For consistency, AND or & is the bitwise AND operator most other...
Ok Steve, Thanks to all. The solution is change template file for prolog.xxx and include into it my custom xBasic source code. Thank you, Alejandro....
Hi All, I have an interesting issue with wanting to write an interface for a servo controller under linux. The device identifies itself with lsusb and the...
Hi Mr. MHelmreich. To use an USB for servo controller you need answer 2 questions: 1. Do you know how to pack your electronic signal in serial mode for the USB...
Hello, I want to get an array as result of custom funcion, or get an array from custom function passed by reference variable name. How can I do? Thanks to...
Well if you mean that you have a third party DLL that supplies an array, you could make an own array having the same size. It is usual if you have to work with...
... XBasic doesn't support passing an array as a result ... You see, results are passed on the stack. In order to pass an array as a result (which is to say,...
It's hard for me to make out what the function is supposed to be doing, though I see several ways to improve it already ... Sometimes there is a strange bug in...