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 18258 - 18287 of 18795   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
18258
Delurking for a minute.... I have a problem with compiling a Xbasic program under XP. (The XP is on a friend's computer; the myprog.x file compiles OK on my...
cr
cr2003nz
Offline Send Email
Feb 1, 2009
8:22 am
18259
... xbvars.bat nmake myprog.x Since you can't carry over the environment when using Run, you'll need to get a command prompt - or edit the run environment for...
Steve Gunhouse
sgunhouse
Offline Send Email
Feb 1, 2009
8:31 am
18260
Hi Group, I have downloaded the fresh Makefile, and the xapp.xxx files. I have put the new Makefile in the root of the source file and the xapp.xxx file in...
Kerry Miller
n0wiq
Offline Send Email
Feb 1, 2009
12:39 pm
18261
That's because you put the replacement Makefile in the wrong directory. The replacement goes in the src directory replacing the Makefile there, the original...
bestonnet_00
Offline Send Email
Feb 1, 2009
2:22 pm
18262
On Sunday 01 February 2009 21:32, Steve Gunhouse wrote: (snippage for bandwidth) ... I take it the only command prompt available from Windows is the 'DOS' type...
cr
cr2003nz
Offline Send Email
Feb 2, 2009
7:58 am
18263
... Even Windows 95 allowed long file names in the command prompt, as long as you weren't one who fell for that old email hoax claiming the long filename...
Steve Gunhouse
sgunhouse
Offline Send Email
Feb 2, 2009
8:14 am
18264
Exist a possibility of xBasic distribution comes in ONE packge :? I explain: - ONE package contain: xBasic + all libraries + extensions + plugins + etc. !! All...
arca765
Offline Send Email
Feb 2, 2009
8:43 am
18265
... Where did you get it from? XBasic comes in one package, but of course depends on certain system libraries. Since they are system libraries and will depend...
Steve Gunhouse
sgunhouse
Offline Send Email
Feb 2, 2009
8:50 am
18266
Hi People, I down loaded the modified src/Make and the modified templates/linux/xapp.xxx: [root@N0WIQ-64 xbasic-6.3.0]# make make -C src mkdir make[1]:...
Kerry Miller
n0wiq
Offline Send Email
Feb 2, 2009
11:54 am
18267
Aside from xlib.s looking corrupt you also need to not run make clean unless you have a working xb binary and just use the pre-generated assembler files from...
bestonnet_00
Offline Send Email
Feb 3, 2009
7:51 am
18268
Hi People, Oh, I have to have a 32 bit XBasic installed on my 64 bit operating system as well as as a good down load of the source package which I have to...
Kerry Miller
n0wiq
Offline Send Email
Feb 3, 2009
12:04 pm
18269
Provided you don't run make clean you should able to 'compile' (assemble would be more accurate) it without xb even on a 64 bit system simply by replacing the...
bestonnet_00
Offline Send Email
Feb 3, 2009
3:10 pm
18270
Hi People, I went to URL: http://www.xs4all.nl/~wizball/xbasic-20060802/ I clicked on xbasic-6.3.0-20060802..tar.gz I saved it to my Download/Xbasic folder....
Kerry Miller
n0wiq
Offline Send Email
Feb 3, 2009
5:42 pm
18271
stubs-32.h is something that you'll have to install, not sure what package it'll be in for your distro though. As for the extraction command, I use gunzip...
bestonnet_00
Offline Send Email
Feb 3, 2009
6:13 pm
18272
Hi People, The missing stubs-32.h is something I have been searching for so far all I have found is the knowledge that such a library is missing for a lot of...
Kerry Miller
n0wiq
Offline Send Email
Feb 3, 2009
7:43 pm
18273
I tried many ways to use XB under Mandriva and Ubuntu. Never had success. Now I consider an alternative would be to use Gambas. I'm trying to learn more about...
Juan Carlos
jc_vicente
Offline Send Email
Feb 3, 2009
9:41 pm
18274
Hi People, I followed a wild hair in a quest for stubs-32.h. I have both 32 bit systems and 64 bit systems on my LAN all running Fedora Core 10 Linux. I...
Kerry Miller
n0wiq
Offline Send Email
Feb 4, 2009
1:55 pm
18275
Damn, that failed basically right at the end (and I don't have a clue what crt1.o is meant to be, I certainly haven't been able to find it anywhere on my...
bestonnet_00
Offline Send Email
Feb 4, 2009
6:16 pm
18276
Hi People, Where in my program do I put a command that I want to repeat each loop of the GUI? -- Kerry N0WIQ My web site URL is: ...
Kerry Miller
n0wiq
Offline Send Email
Feb 8, 2009
3:42 am
18277
Usually you have the XgrProcessMessages(1) in the Entry function. If you however add a DO LOOP function elsewhere in your program and want to update GUI...
Vincent Voois
vvacme
Offline Send Email
Feb 8, 2009
8:34 am
18278
Hello People, Oops, I must have miss stated my question. I have a XuiTextLine in my GUI. All I want to do is update the text in that text line each time the...
Kerry Miller
n0wiq
Offline Send Email
Feb 8, 2009
11:30 am
18279
Aha Then it's simple: just add it into the DO LOOP function of the Entry() function... ' ' ' ###################### ' ##### Entry () ##### '...
Vincent Voois
vvacme
Offline Send Email
Feb 8, 2009
12:05 pm
18280
"Each time the GUI loops" is probably not desirable. The program may loop several thousand times a second (probably more), trying to update your textline that...
Steve Gunhouse
sgunhouse
Offline Send Email
Feb 8, 2009
4:36 pm
18281
I usually used a timer that performed a call to another function every second. Set the timer to a figure and 1000 milliseconds or more later it performed a...
Vincent Voois
vvacme
Offline Send Email
Feb 8, 2009
4:39 pm
18282
Hi People, A timer sounds good, I just haven't read about its invocation. I at least think I need something more explicit. ... -- Kerry N0WIQ My web site URL...
Kerry Miller
n0wiq
Offline Send Email
Feb 8, 2009
6:15 pm
18283
Hi People, Alas, I have been reading the xbasic manual and came accros this statement: XBasic runs only on 32-bit and 64-bit computers. My confusion is if...
Kerry Miller
n0wiq
Offline Send Email
Feb 9, 2009
11:01 am
18284
Because running it on 64 bit systems is only theoretical (I've tried to create a native port to 64 bit and haven't managed to get it working) so running on 64...
bestonnet_00
Offline Send Email
Feb 9, 2009
1:14 pm
18285
Hi People, My experience, My problems were that xbasic 6.3.0 wouldn't run correctly om my 64 bit system. The graphics designer and program functionality...
Kerry Miller
n0wiq
Offline Send Email
Feb 9, 2009
1:46 pm
18286
Why did firefox claim that http://www.xbasic.org was a reported attack site? It doesn't look at all strange to me (although I'm running Linux so I probably...
bestonnet_00
Offline Send Email
Feb 9, 2009
2:44 pm
18287
This is why: "Of the 2 pages we tested on the site over the past 90 days, 2 page(s) resulted in malicious software being downloaded and installed without user...
Vincent Voois
vvacme
Offline Send Email
Feb 9, 2009
5:25 pm
Messages 18258 - 18287 of 18795   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