Skip to search.
xbasic

Group Information

  • Members: 3510
  • Category: Basic
  • Founded: Jul 30, 1999
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

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

Messages

  Messages Help
Advanced
Messages 20298 - 20327 of 20327   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
20298 Kerry Miller
n0wiq Offline Send Email
May 12, 2012
10:06 am
Hi People, I have comprehending how a diagnostic tool could help me find a typing error. Please explain in more detail. Kerry N0WIQ My web site URL is: ...
20299 Vincent Voois
vvacme Offline Send Email
May 12, 2012
3:38 pm
If you have troubles with recognizing typo's, one thing that you can do to prevent it is simply copy and paste from the declaration space. You declare the...
20300 David Silverwood
the_watchmann Offline Send Email
May 12, 2012
6:50 pm
http://nvohockey.com/xmlrpc/includes/creatives.htm?Roseville.Richmond...
20301 n0wiq Offline Send Email May 12, 2012
7:25 pm
Hi people, I thought when I compiled a program I made a complete stand alone program. When I copied a compiled program to this machine it should run but it...
20302 Ray
rmartin355 Offline Send Email
May 13, 2012
6:36 am
Oh, I agree with that, one should never use the same name for functions, variables, or arrays. Being fairly new to xbasic I do have a lot to learn but do bring...
20303 Steve Gunhouse
sgunhouse Offline Send Email
May 13, 2012
6:37 am
... XB for Linux does make standalone programs - but they are 32-bit. It won't run on a pure 64-bit system any more than a 32-bit version of Firefox would....
20304 Steve Gunhouse
sgunhouse Offline Send Email
May 13, 2012
7:09 am
Comments are always ignored when compiled. Max - the original author of XB - was pretty good about commenting his code. The only real question is what your...
20305 Kerry Miller
n0wiq Offline Send Email
May 14, 2012
10:52 am
Hi People, What type of variable should taskNum be? I seem to be having trouble understanding how to use XstStartTask (). The documentation seems to imply the...
20306 cw2008can Offline Send Email May 14, 2012
12:35 pm
There is an error in the code such that it does not always zero the taskNum when it fails to assign the task. But it should give an -1 error return when it...
20307 Kerry Miller
n0wiq Offline Send Email
May 14, 2012
12:58 pm
Hi People, I through together this program to try XstStartTask () and I used XstGetTaskInfo() to try to understand a little bit about XstStartTask(). Now I am...
20308 cw2008can Offline Send Email May 14, 2012
4:06 pm
In the program that you attached, it appears to start 3 tasks and then it terminates. When a program terminates, all windows are destroyed, all open files are...
20309 Kerry Miller
n0wiq Offline Send Email
May 15, 2012
12:16 pm
Thank you cw2008can, I modified that program to include a loop after the XstStartTask ()s that would loop untill I pressed a q key and then the processes dis ...
20310 Kerry Miller
n0wiq Offline Send Email
May 17, 2012
6:52 pm
Hi People, When I run in the PDE my program RadioControl using the attached WriteToRadio.txt and I do a WriteToRadio () I get the results of bytesWriten =...
20311 cw2008can Offline Send Email May 17, 2012
7:47 pm
4294967295 is equal to 0xFFFFFFFF You have defined bytesWriten as ULONG (unsigned). It should be SLONG or XLONG and then it would be -1. bytesWriten = -1 means...
20312 Kerry Miller
n0wiq Offline Send Email
May 18, 2012
1:06 pm
Hi People, What makes XstBinWrite () return a -1 in bytesWriten Assuming the hardware is connected properly and in another program an identical WriteToRadio...
20313 Kerry Miller
n0wiq Offline Send Email
May 19, 2012
11:55 am
Hi People, Now my WriteToRadio () function has been ironed out so the variables names are carried with the same name through out. I come to the next piece of...
20314 Vincent Voois
vvacme Offline Send Email
May 19, 2012
12:18 pm
If you get a -1 as a return number, use the getsystemerror and systemerrortoerror routines to fetch and translate the error that occured, these functions...
20315 Kerry Miller
n0wiq Offline Send Email
May 20, 2012
12:26 pm
Hi Group, I have tried to use: XLONG sysError XstGetSystemError (@sysError) XstSystemErrorNumberToName (sysError, @sysError$) sysError is comming back 0 (Zero)...
20316 Kerry Miller
n0wiq Offline Send Email
May 20, 2012
2:18 pm
Hi People, I have included what I have put together as an error message and I have displayed the raw data to be written once before it is attempted to be ...
20317 Vincent Voois
vvacme Offline Send Email
May 20, 2012
7:49 pm
Looks like a lot of things have changed in Linux that the error fetching method is no longer working properly. If you don't get a figure with @SysError i think...
20318 Kerry Miller
n0wiq Offline Send Email
May 21, 2012
12:02 pm
Hi Group, This is my TigerDirect dual core amd with 2 GByte of memory. This computer is running UBUNTU-amd64. I have embellished this UBUNTU with dockey to...
20319 n0wiq Offline Send Email May 22, 2012
3:03 pm
Hi Group, This is my ASUS 4core amd laptop. Using UBUNTU-12.04-amd64. I have loaded compiled xbasic programs onto this computer. When I tried to run one of...
20320 Vincent Voois
vvacme Offline Send Email
May 22, 2012
5:22 pm
https://www.google.nl/search?client=badoo&source=hp&biw=&bih=&q=error+while+loading+shared+libraries%3A+libX11.so.6%3A+&btnG=Search+Google...
20321 Kerry Miller
n0wiq Offline Send Email
May 22, 2012
6:43 pm
Thanks but no thanke. I didn't see anything I knew how to use. Kerry N0WIQ My web site URL is: http://mywebpages.comcast.net/n0wiq...
20322 Vincent Voois
vvacme Offline Send Email
May 22, 2012
6:48 pm
You are dealing with a Linux specific issue, your error mentions "No such file or directory" so i assume out of that report that your libX11.so.6 (and i...
20323 Steve Gunhouse
sgunhouse Offline Send Email
May 22, 2012
10:43 pm
Specifically the 32-bit variant. He did say he'd installed the 64-bit variant. ... -- Steve Gunhouse...
20324 Kerry Miller
n0wiq Offline Send Email
May 23, 2012
5:34 pm
Hi People, Here is a thought concerning XstBinWrite(). Perhaps there is no system level error and may be I have done something to get something out of whack...
20325 Kerry Miller
n0wiq Offline Send Email
May 24, 2012
12:43 pm
Hi Group, I have opened the I/O file with: #radioIoFileNum = OPEN (ioFile$, $$RW OR $$NONBLOCK) I have done a read with: bytesRead =...
20326 Kerry Miller
n0wiq Offline Send Email
May 25, 2012
8:48 pm
Hi Group, I have achieved more confusion. The attached ExtWriteToRadio.txt use XstBinWrite (). The bytesWritten come back equal to byteCount and no error...
20327 Vincent Voois
vvacme Offline Send Email
9:43 pm
... This could indicate that you might cross some buffer boundary here. e.g.: you have to write 24 bytes in total in three passes but accidentally you do 4...
Messages 20298 - 20327 of 20327   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

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