Search the web
Sign In
New User? Sign Up
xbasic
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 17475 - 17504 of 18792   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
17475
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 ...
David Silverwood
the_watchmann
Offline Send Email
Jul 3, 2007
7:18 pm
17476
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...
eb4bgr
Offline Send Email
Jul 3, 2007
10:46 pm
17477
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,...
Steve Gunhouse
sgunhouse
Offline Send Email
Jul 4, 2007
12:40 am
17478
... 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...
Steve Gunhouse
sgunhouse
Offline Send Email
Jul 4, 2007
1:24 am
17479
Hi: I have been attempting to debug a subroutine by entering a break point at the start of a SELECT CASE TRUE statement. ...
old2newbie
Offline Send Email
Jul 4, 2007
7:57 pm
17480
... 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...
Vincent Voois
vvacme
Offline Send Email
Jul 4, 2007
8:10 pm
17481
Long time (two-three years?) I couldn't make it work properly under Mandrake/Mandriva, since 9.0....
Juan Carlos
jc_vicente
Offline Send Email
Jul 4, 2007
9:01 pm
17482
... Since environment errors can only occur in the PDE ... -- Steve Gunhouse...
Steve Gunhouse
sgunhouse
Offline Send Email
Jul 5, 2007
12:22 am
17483
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...
jimc5_in_oregon
Offline Send Email
Jul 5, 2007
12:57 am
17484
Not me Jim, but old2newbie. On Wed, 04 Jul 2007 20:56:00 -0400, jimc5_in_oregon <jimc52@...> ... -- Steve Gunhouse...
Steve Gunhouse
sgunhouse
Offline Send Email
Jul 5, 2007
2:07 am
17485
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...
eb4bgr
Offline Send Email
Jul 5, 2007
2:24 am
17486
Hi: Perhaps you should down load and run this tutorial, which creates a DLL and that you can call from another program. ...
old2newbie
Offline Send Email
Jul 5, 2007
3:08 pm
17487
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...
jimc5_in_oregon
Offline Send Email
Jul 5, 2007
4:31 pm
17488
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...
old2newbie
Offline Send Email
Jul 6, 2007
2:55 pm
17489
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...
eb4bgr
Offline Send Email
Jul 6, 2007
10:43 pm
17490
... 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 Gunhouse
sgunhouse
Offline Send Email
Jul 6, 2007
11:22 pm
17491
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,...
eb4bgr
Offline Send Email
Jul 7, 2007
12:35 am
17492
... 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...
Steve Gunhouse
sgunhouse
Offline Send Email
Jul 7, 2007
1:35 am
17493
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...
Ivo Tonkes
ijtonkes
Offline Send Email
Jul 7, 2007
3:15 pm
17494
... 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...
Steve Gunhouse
sgunhouse
Offline Send Email
Jul 7, 2007
4:44 pm
17495
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....
eb4bgr
Offline Send Email
Jul 7, 2007
8:46 pm
17496
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...
mhelmreich
Offline Send Email
Jul 11, 2007
9:55 am
17497
On Wed, 11 Jul 2007 05:55:22 -0400, mhelmreich <mail@...> ... Myself, only vaguely. In Linux, everyting is a file. RAM is a file, your devices are...
Steve Gunhouse
sgunhouse
Offline Send Email
Jul 11, 2007
1:16 pm
17498
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...
Walter
walter_cwb
Offline Send Email
Jul 12, 2007
1:52 am
17499
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...
eb4bgr
Offline Send Email
Jul 13, 2007
10:26 am
17500
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...
Vincent Voois
vvacme
Offline Send Email
Jul 13, 2007
1:10 pm
17501
... 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,...
Steve Gunhouse
sgunhouse
Offline Send Email
Jul 13, 2007
4:33 pm
17502
Steve, I was try next array example but it doesn't show anything. Sourcecode is a function to extract tokens from string. What's my error? ...
eb4bgr
Offline Send Email
Jul 14, 2007
7:51 pm
17503
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...
Steve Gunhouse
sgunhouse
Offline Send Email
Jul 14, 2007
8:35 pm
17504
Steve, thank you, so much. All problems and bugs was solved. Best regards, Alejandro....
eb4bgr
Offline Send Email
Jul 14, 2007
10:17 pm
Messages 17475 - 17504 of 18792   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help