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 18539 - 18568 of 18801   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
18539
Hi Group, I have developed a GUI to control my radio (IC-706MKiiG). The program works. The issue I am having is I have used a set of XuiDropBox kids in my...
Kerry Miller
n0wiq
Offline Send Email
May 3, 2009
10:27 am
18540
Hello Group, I wish to use an ISA digital I/O card to interface to external hardware. Any guidance on how to do that is most welcome. The card is memory mapped...
Z P
chatnick_au
Offline Send Email
May 4, 2009
1:18 am
18541
Hi ZP   Check this web page, www.boondog.com   This guy has software for download, but this is only visual Basic.     Sheers.   Felipe Cepeda ... De:: Z P...
Felipe Cepeda
clingon_ds9
Offline Send Email
May 4, 2009
4:03 pm
18542
Fekipe, Thanks for responding. Boondog is no longer active.. there is a frame which pops up but page content is non existent. ... From: Felipe Cepeda...
Z P
chatnick_au
Offline Send Email
May 5, 2009
3:18 am
18543
Hi all,   I entered into the page and I could see all the info.   Here attached is one file with the information about the 8255 I/O board, this one I could...
Felipe Cepeda
clingon_ds9
Offline Send Email
May 5, 2009
3:28 am
18544
I modified my FUNCTION Entry The code is included in the attachment. It works (sort of). Is there a better way. I am using xbasic-6.3.2-linux. -- Kerry...
Kerry Miller
n0wiq
Offline Send Email
May 11, 2009
4:36 pm
18545
... If you would like to repeat the timer proces every 16 millisecs i would also allow the time variable to be refreshed to get this working: time = msec ...
Vincent Voois
vvacme
Offline Send Email
May 11, 2009
9:00 pm
18546
Hi Group, The service function TimedDisplays () resets time to time + waitTime + 5 ... -- Kerry N0WIQ My web site URL is: http://mywebpages.comcast.net/n0wiq...
Kerry Miller
n0wiq
Offline Send Email
May 11, 2009
9:12 pm
18547
Ewps yes, forgot the SHARED /time/ DOUBLE time, waitTime line... I never use the SHARED definition that way, personally for me way too confusing (or way too...
Vincent Voois
vvacme
Offline Send Email
May 11, 2009
9:30 pm
18548
Hi Group, I haven't taken up on the idea of prefixes. ... -- Kerry N0WIQ My web site URL is: http://mywebpages.comcast.net/n0wiq...
Kerry Miller
n0wiq
Offline Send Email
May 12, 2009
12:48 am
18549
Hi Group, Modifying Entry the way I did to get the 16mSec cycle of displayed fields (3) makes the 16mSec cycle part of the program flow which causes the GUI to...
Kerry Miller
n0wiq
Offline Send Email
May 12, 2009
2:01 am
18550
Adding the XgrProcessMessages(1) in the TimedDisplay() function would speed up the GUI a lot more as you give your program morepoints where it may refresh the...
Vincent Voois
vvacme
Offline Send Email
May 12, 2009
7:58 am
18551
Wasn't there a third option? Sorry, I don't have my documentation here on this laptop, but doesn't XgrProcessMessages (n) where n > 0 wait for that number of...
Steve Gunhouse
sgunhouse
Offline Send Email
May 12, 2009
8:28 am
18552
Hi Group, This is a finer point of GUI management I hadn't explored until you mentioned it. Now as I understand it: You should put XgrProcessMessages () in...
Kerry Miller
n0wiq
Offline Send Email
May 12, 2009
10:29 am
18553
... No not really, XgrProcessMessages() polls the "message" stack if there are still messages and events waiting to be processed and then either processes one...
Vincent Voois
vvacme
Offline Send Email
May 12, 2009
11:36 am
18554
Hi Group, Then this Function that displays a window and fills the text area would benifit from XgrProcessMessages (). Does XgrProcessMessages () go before the...
Kerry Miller
n0wiq
Offline Send Email
May 12, 2009
12:20 pm
18555
You change a complete text-array, which does not really matter much here, so you could leave it out (also keeps the process fast). If you embed it inside the...
Vincent Voois
vvacme
Offline Send Email
May 12, 2009
12:32 pm
18556
In Kerry's case, she is using PRINT which has its own built-in message processing. ... -- Steve Gunhouse...
Steve Gunhouse
sgunhouse
Offline Send Email
May 12, 2009
3:38 pm
18557
Hi Group, Ok, I don't want the function ScanDisp as part of the message loop but I want it called repeatedly and rapidly (5 - 10 mSec). My knowledge suggests...
Kerry Miller
n0wiq
Offline Send Email
May 12, 2009
5:29 pm
18558
Hi Group, Especially xbasic-linux developers, See attached for details. Again let me reiterate I appreciate xbasic-6.3.2-linux much more than I did...
Kerry Miller
n0wiq
Offline Send Email
May 13, 2009
12:47 pm
18559
Hi Group, It has come to pass, I need to initialize arrays before I use them. I am sure there is an easy way in xbasic but I have not read across the ...
Kerry Miller
n0wiq
Offline Send Email
May 14, 2009
2:32 pm
18560
A REDIM should work anywhere for sure on global arrays without having to DIMensioning them first (REDIM #MyArray[0]). Don't have tested if this works the same...
Vincent Voois
vvacme
Offline Send Email
May 14, 2009
4:17 pm
18561
I presume by global arrays would be shared arrays. And I also presume I could use this technique on windows arrays. ... -- Kerry N0WIQ My web site URL is: ...
Kerry Miller
n0wiq
Offline Send Email
May 14, 2009
6:06 pm
18562
... Procedure is same as in other versions of BASIC, you use DIM to set the size and shape (or REDIM if it may contain data but you're not sure it's the right...
Steve Gunhouse
sgunhouse
Offline Send Email
May 14, 2009
7:02 pm
18563
If I presume that when you say initializing arrays, you mean the way that the "C" or "C++" languages do. No, XBasic is different. XBasic always "initializes" ...
cw2008can
Offline Send Email
May 14, 2009
7:10 pm
18564
Hi Group, My main concern is XuiTextArray. Sense I haven't dug into a XuiTextArray I don't know how they respond to what. All I know is that sense I use one...
Kerry Miller
n0wiq
Offline Send Email
May 15, 2009
2:08 am
18565
DIM will erase the data (set it all to 0, or to empty strings), while REDIM will only clear new cells (and retain existing data). ... -- Steve Gunhouse...
Steve Gunhouse
sgunhouse
Offline Send Email
May 15, 2009
6:32 am
18566
REDIM array[-1] will erase all data as well. This is what works in XBASIC: FUNCTION XX() XLONG Consta, Constb . . . . . . DIM MyArray[10] ' no data will exist,...
Vincent Voois
vvacme
Offline Send Email
May 15, 2009
6:56 am
18567
Hi Group, I get the idea of DIM{}, creating an array. XuiTextArray[?] is a predefined array as far as my program is concerned. Also I don't know how it is...
Kerry Miller
n0wiq
Offline Send Email
May 15, 2009
11:18 am
18568
XuiTextArray is a function which returns or sets the text array of your grid, it is not a predefined array. Just DIM the array - unlike BASIC, XBasic lets you...
Steve Gunhouse
sgunhouse
Offline Send Email
May 15, 2009
3:05 pm
Messages 18539 - 18568 of 18801   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