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

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 16346 - 16376 of 17854   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
16346
I had brought this up a year ago and the answers provided helped me understand. But I'm now involved in a discussion with someone about buffer overflows and...
skywise
skywise711
Offline Send Email
Jan 1, 2006
10:12 pm
16347
... Of course if you actually use the character access to strings (as in, a${n}) then you could have an overrun, but for most people that would constitute...
Steven V. Gunhouse
sgunhouse
Offline Send Email
Jan 1, 2006
11:41 pm
16348
Steven V. Gunhouse wrote: <Snipola> ... But even in this case there's no possibility of executing arbitrary code, right? Just corruption of data. Thanks for...
skywise
skywise711
Offline Send Email
Jan 2, 2006
3:52 am
16349
... If you try to, you could execute code due to an error. You'd have to accidentally overwrite the contents of a GOADDR, SUBADDR or FUNCADDR variable or...
Steven V. Gunhouse
sgunhouse
Offline Send Email
Jan 2, 2006
5:38 am
16351
Does anyone have an example of adding, subtracting, multiplying and dividing two complex numbers, and then printing the results as well as the original numbers...
indexcuttermill2
indexcutterm...
Offline Send Email
Jan 4, 2006
11:13 pm
16352
On Wed, 04 Jan 2006 18:12:51 -0500, indexcuttermill2 ... Complex arithmetic is comparitively simple, the hard part is I/O. There are two built-in complex...
Steve Gunhouse
sgunhouse
Offline Send Email
Jan 5, 2006
3:30 am
16353
... it's easy! ___________________________________________________________ ÑÅ»¢1GÃâ·ÑÓÊÏä°Ù·Ö°Ù·ÀÀ¬»øÐÅ http://cn.mail.yahoo.com...
daming zhang
xbxjl
Offline Send Email
Jan 5, 2006
5:36 am
16354
... and ... well as ... are ... them ... notes, ... components ... ... SCOMPLEX is ... depends on ... example ... Steve Thanks so much for the explanation and...
indexcuttermill2
indexcutterm...
Offline Send Email
Jan 5, 2006
6:48 am
16355
Good Day, I am using Xbasic 6.2.3 I cannot compile cos , COS ,sin,SIN in it. It tells me cos,COS etc is undeclared. Can some one tell me how to compile/run it?...
kxs322
Offline Send Email
Jan 8, 2006
7:46 pm
16356
... Read the documentation? Advanced math functions are part of the xma library. That means to use them, at the start of your program you need to have the line...
Steven V. Gunhouse
sgunhouse
Offline Send Email
Jan 8, 2006
8:10 pm
16357
Thanks Steve, I tried it IMPORT "xma" It get error "too late"...
kxs322
Offline Send Email
Jan 8, 2006
10:19 pm
16358
It should be in the PROLOG and it should be one of the first lines XBasic encounters in the PROLOG. You can put any other IMPORT in front of it, but no...
Vincent Voois
vvacme
Offline Send Email
Jan 8, 2006
10:43 pm
16359
This message is directed to Xbtools [ D.Szafranski ] ; who I was unable to reach through my normal mail server. I wish to use some code from your program...
gedcda72
Offline Send Email
Jan 9, 2006
2:13 am
16360
... I gather you're not too familiar with the PDE, perhaps? Your program is divided into a prolog and a number of functions, of course the prolog comes first....
Steve Gunhouse
sgunhouse
Offline Send Email
Jan 9, 2006
3:56 am
16361
Thanks Steve, It worked. Now I have this code which I have use with quick basic DIM x(6) DIM rex(3) 'REX[ ] holds the real part of the frequency domain DIM...
kxs322
Offline Send Email
Jan 9, 2006
7:25 am
16362
Please ignore this quesation. I was making a typing mistake. Thnaks...
kxs322
Offline Send Email
Jan 9, 2006
7:48 am
16363
is there any way to print values as float points/ sintific notaion?...
kxs322
Offline Send Email
Jan 9, 2006
8:06 am
16364
... You might want to look at the documentation for FORMAT$(). For most purposes though the standard PRINT command should be able to do a good enough job....
bestonnet_00
Offline Send Email
Jan 9, 2006
8:30 am
16365
... What is the type of the variable you are using? The default type for variables is XLONG, which is an integer type. If you want to use decimal results, you...
Steve Gunhouse
sgunhouse
Offline Send Email
Jan 9, 2006
8:46 am
16366
Thanks again. I used both x! and x# for my needs x# is enough...
kxs322
Offline Send Email
Jan 9, 2006
9:03 am
16367
... Yes, that is ok with me. But I am not responsible for any errors or problems with the code. ciao, David...
D.
xbtools
Offline Send Email
Jan 9, 2006
12:16 pm
16368
one last question how do i save data/results on a local file? The data which is produced from Xbasic code it self. I believe I can draw a graph with that using...
kxs322
Offline Send Email
Jan 9, 2006
7:42 pm
16369
Is that possible if you run a code on qbasic you get different results(floa point values) then if you run same code on xbasic?? here is the code I am talking...
kxs322
Offline Send Email
Jan 9, 2006
10:03 pm
16370
QBasic has as default type SINGLE. XBasic has as default XLONG. Also QBasic wasn't that particulary precise in the values. But in a lot of cases:QBasic is not...
Vincent Voois
vvacme
Offline Send Email
Jan 9, 2006
10:23 pm
16371
Thanks. For xbasic I used X! X# I produced same results rex img 4 0 -.3998 1.85402 .81945 .37065 -.166647 .225154 off course...
kxs322
Offline Send Email
Jan 9, 2006
10:43 pm
16372
... Certainly, depending on how much documentation you have available. Saving ... is generally like other languages, you can either print stuff to a file...
Steven V. Gunhouse
sgunhouse
Offline Send Email
Jan 10, 2006
2:07 am
16373
... I'm still unsure what the routine you are running is. There is one significant difference between XBasic and QBASIC, and that is notation for exponents....
Steven V. Gunhouse
sgunhouse
Offline Send Email
Jan 10, 2006
2:16 am
16374
Here is the code. Off course I removed #, function entry, ' END FUNCTION,END PROGRAM here is the code ...
kxs322
Offline Send Email
Jan 10, 2006
6:19 am
16375
... First error - what is the type of "PI"? It has no type suffix and no declaration, so is XLONG. In other words, PRINT PI will give an answer of 3. Using the...
Steven V. Gunhouse
sgunhouse
Offline Send Email
Jan 10, 2006
6:40 am
16376
... From: "kxs322" <kxs322@...> To: <xbasic@yahoogroups.com> Sent: Tuesday, January 10, 2006 5:19 PM Subject: [xbasic] Re: quick basic != xbasic ?? ... ...
Vic Drastik
vicdrastik
Offline Send Email
Jan 10, 2006
7:12 am
Messages 16346 - 16376 of 17854   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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