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

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

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 17838 - 17867 of 18803   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
17838
I have a 9X9X9 array. How do I use F8 (display variables) to look at the contents? 'details' is the start, but what next? The next higher or next lower moves...
Al Farkas
afarkas206
Offline Send Email
Apr 19, 2008
7:32 pm
17839
... Double-click on the level, a new dialog opens with the array that is inside that root-level, but i never have worked intensively with more than one level...
Vincent Voois
vvacme
Offline Send Email
Apr 19, 2008
8:41 pm
17840
... It does, however many levels there are. -- Steve Gunhouse...
Steve Gunhouse
sgunhouse
Offline Send Email
Apr 19, 2008
8:46 pm
17841
I must be missing something. After I select 'array' I select 'detail'. I then get a new dialog box with the title 'array'. The 2nd line gives the function name...
Al Farkas
afarkas206
Offline Send Email
Apr 21, 2008
6:25 pm
17842
Let's try a sample program to see how the array display works. FUNCTION Entry () DIM a[9,9,9] a[4,5,6] = 99999 ... Single step the above program to the END...
cw2008can
Offline Send Email
Apr 22, 2008
5:51 pm
17843
This seems to be the same message I sent 4/21/08 2:24 ... From: Al Farkas To: xbasic@yahoogroups.com Sent: Monday, April 21, 2008 2:24 PM Subject: Re: [xbasic]...
Al Farkas
afarkas206
Offline Send Email
Apr 26, 2008
12:54 pm
17844
I must be missing something. After I select 'array' I select 'detail'. I then get a new dialog box with the title 'array'. The 2nd line gives the function name...
Al Farkas
afarkas206
Offline Send Email
Apr 26, 2008
5:03 pm
17845
... I'm not sure where "level" is coming from. Double-click on the index that you want, or click once then click "Next lower dimension". Someone else already...
Steve Gunhouse
sgunhouse
Offline Send Email
Apr 26, 2008
5:19 pm
17846
Hi to all, I'm trying to call my own .dll functions writted on Delphi 2.0 from xBasic program. These functions can't be converted to xBasic sourcecode...
eb4bgr
Offline Send Email
Apr 26, 2008
11:06 pm
17847
... First of all, XBasic STRING type is not a type understood by other programs, you'll need to use pointers. Then you'll also have to use CSTRING(address) to...
Steve Gunhouse
sgunhouse
Offline Send Email
Apr 27, 2008
4:44 am
17848
... You might want to change the STRING cIN$ and STRING cKey$ into XLONG cIN and XLONG cKey and use the copymemory function to copy strings from the address...
Vincent Voois
vvacme
Offline Send Email
Apr 27, 2008
10:38 am
17849
My program compiles fine in XP. No joy in Linux Ubuntu 8.04. I get : cc -g -Wall -ggdb freqset6.o -rdynamic -L/usr/X11R6/lib -lxb -lX11 -ldl -o freqset6 ...
Eric Furness
ericfurn2
Offline Send Email
Apr 28, 2008
5:19 am
17850
On Sun, 27 Apr 2008 19:26:13 -0400, Eric Furness <ericfurn@...> ... Which version of XB for Linux? -- Steve Gunhouse...
Steve Gunhouse
sgunhouse
Offline Send Email
Apr 28, 2008
5:39 am
17851
... 6.2.3..tarball. Funny a few years ago in a previous linux installation I had it working ok. This time I had a lot of dependency problems to get even this...
Eric Furness
ericfurn2
Offline Send Email
Apr 28, 2008
1:25 pm
17852
On Mon, 28 Apr 2008 09:25:57 -0400, Eric Furness <ericfurn@...> ... Newer versions of Linux don't work with 6.2.3, You'll need to download Eddie's 6.3...
Steve Gunhouse
sgunhouse
Offline Send Email
Apr 28, 2008
5:34 pm
17853
... OK good on you I'll go look for it.. Tnx Eric...
Eric Furness
ericfurn2
Offline Send Email
Apr 28, 2008
5:50 pm
17854
... OK good I found 6.3 ok, installed it and it works a treat. I did have to add the -f switch however. Tnx, Eric...
Eric Furness
ericfurn2
Offline Send Email
Apr 28, 2008
11:40 pm
17855
Hi, I read there is a XB 6.3 beta somewhere to download which runs on newer Linuxes. Where can I find it? It seems not to appear in the "files" section of the...
cybermonkey342
Offline Send Email
May 21, 2008
3:03 pm
17856
Quoting Eddie ... ... From: "Eddie Penninkhof" <wizball@...> To: xbasic@yahoogroups.com Cc: Subject: Re: [xbasic] problem installing xbasic (Ubuntu...
Steve Gunhouse
sgunhouse
Offline Send Email
May 21, 2008
3:42 pm
17857
If I may. If XB 6.3 does bomb out, install the latest release of wine and install XB for windows. I use Suse 10.1 and XB for linux kept on bombing out. Now...
David
the_watchmann
Offline Send Email
May 21, 2008
8:37 pm
17858
Good day, Can a person use the Xbasic language in Foxpro. We are trying to use a date function to execute an command in Foxpro, but are unable to do so. Does...
nelvernon
Offline Send Email
May 24, 2008
3:50 am
17859
... This language is not related to the similarly-named database language, so I don't believe we can help you. -- Steve Gunhouse...
Steve Gunhouse
sgunhouse
Offline Send Email
May 24, 2008
3:56 am
17860
I'm getting: gcc -c linux/lib/xstart.s -o linux/lib/xstart.o linux/lib/xstart.s: Assembler messages: linux/lib/xstart.s:38: Error: suffix or operands invalid...
bestonnet_00
Offline Send Email
May 24, 2008
2:34 pm
17861
No surprise. The copiler outputs i386 (32-bit) assembler, of course it won't be able to convert the assembler to binary if you try to do it in x86-64 mode. On...
Steve Gunhouse
sgunhouse
Offline Send Email
May 24, 2008
3:49 pm
17862
... Thought it might be something like that, I'll also just assume that the 32 bit version won't be able to produce compliable code on 64 bit....
bestonnet_00
Offline Send Email
May 25, 2008
7:48 am
17863
I am a newbe: These items frustrate me. I am running Fedora Core 8 on my main machine. And I am running Fedora Core 9 on my laptop computer. I installed...
n0wiq34
Offline Send Email
May 27, 2008
12:43 am
17864
... 6.2.3 is really a version that predates gcc 4 and thus doesn't work very well. The lead developer, Eddie, has a version up for gcc 4 under the name xbasic...
Steve Gunhouse
sgunhouse
Offline Send Email
May 27, 2008
1:52 am
17865
Hi People, I think I remember a way to convert a string variable of numeric digits to a numeric value. Xbasic doesn't have VAL command like some other basics...
Kerry Miller
n0wiq34
Offline Send Email
May 27, 2008
8:08 pm
17866
... What type of value - XLONG, DOUBLE, etc.? Try XLONG(a$), DOUBLE(a$), etc. -- Steve Gunhouse...
Steve Gunhouse
sgunhouse
Offline Send Email
May 27, 2008
8:32 pm
17867
Hi People, I was wanting a function that would decode a string according the the number base I was entering the digits into the string for. In other words, if...
Kerry Miller
n0wiq34
Offline Send Email
May 28, 2008
11:50 am
Messages 17838 - 17867 of 18803   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