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

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 18119 - 18149 of 18801   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
18119
XBasic comes with a Demo folder that contains a load of source-code files. Most work out-of the box, some of them contain deliberate mistakes so you have to...
Vincent Voois
vvacme
Offline Send Email
Nov 1, 2008
12:08 pm
18120
How i can compile\link ahello.x to ahello.exe in xBasic under Windows ... PS I try: 1) xb ahello.x 2) nmake -f ahello.mak (I copy a lot of *.lib's to bin) 3)...
arca765
Offline Send Email
Nov 2, 2008
2:55 am
18121
Have you copied the xbrun.dll file to the windows or windows system folder and renamed it xb.dll ? ... From: arca765 <arca765@...> Subject: [xbasic]...
David Silverwood
the_watchmann
Offline Send Email
Nov 2, 2008
8:01 am
18122
  ... R: What :? Where i put the file xbrun.dll renamed xb.dll >:? No, i don't make it !! But, i try, and after, i response. Wait !!     Novos endereços, o...
Rafael Augusto Ferrer...
arca765
Offline Send Email
Nov 2, 2008
10:12 am
18123
I put xbrun.dll in Windows, Windows\System and Windows\System directories with the changed name xb.dll, and, nothing ! The ahello.exe only calls other empty...
arca765
Offline Send Email
Nov 2, 2008
3:20 pm
18124
I change to the xBasic 6.3.1, and, the 'run' menu have plus 2 options: make standalone and execute standalone. Cool !! But .. 1) I load ahello.x 2) I run...
arca765
Offline Send Email
Nov 2, 2008
5:41 pm
18125
Are your xb environment variables set? ie: xbvars.bat It may differ from machine to machine. mine looks something like this although with xp you should set it...
David Silverwood
the_watchmann
Offline Send Email
Nov 2, 2008
5:46 pm
18126
Go to your root folder and unzip it. Should unzip to /usr/xbasic-6.3.0. You need root privileges. The executable is in the /usr/xbasic-6.3.0/bin folder, which...
David Silverwood
the_watchmann
Offline Send Email
Nov 2, 2008
5:55 pm
18127
Go to your root folder and unzip it. Should unzip to /usr/xbasic-6.3.0. You need root privileges. The executable is in the /usr/xbasic-6.3.0/bin folder, which...
David Silverwood
the_watchmann
Offline Send Email
Nov 2, 2008
5:58 pm
18128
I find xbvars.bar and run it. After i try one more time to compile ahello.x. And, not fun !! PS I download\install quickli the freeBasic IDE. I load a...
arca765
Offline Send Email
Nov 3, 2008
1:27 am
18129
Thanks very much. I thought I had downloaded all the xbasic files, but the ones I do have do not have a demo folder. Please direct me to the correct location....
ccearnheart
Offline Send Email
Nov 3, 2008
4:26 pm
18130
Do you have a file called ahello.x? If you have that, then you have what should have been in the demos folder. Any file ending in .x is a program source file...
Steve Gunhouse
sgunhouse
Offline Send Email
Nov 3, 2008
5:44 pm
18132
How do you paste code from Notepad into the XBasic editor and have it recognized as a program? I got through the example in the GUI .doc----facinating. Thanks....
ccearnheart
Offline Send Email
Nov 20, 2008
6:57 pm
18133
XBasic uses the old windows shortcut for that:Ctrl-ins...
Vincent Voois
vvacme
Offline Send Email
Nov 20, 2008
7:48 pm
18134
http://gnetools.sourceforge.net/xbsupport/viewpane_myfirstguiprogram.html...
Vincent Voois
vvacme
Offline Send Email
Nov 20, 2008
7:50 pm
18135
I think he was after the other half of that question, Vince ... there's an item on the menu to change the editor between text mode and program mode. You can...
Steve Gunhouse
sgunhouse
Offline Send Email
Nov 21, 2008
8:40 am
18136
Also, can the console window size and the grid window size be controlled? Thanks in advance. I found the undocumented XstClearConsole() command....
ccearnheart
Offline Send Email
Nov 21, 2008
5:47 pm
18137
... There were maybe 3 messages yesterday, though usually it's more quiet than that ... I'm Cc'ing this back to the list, if you get two copies then you are...
Steve Gunhouse
sgunhouse
Offline Send Email
Nov 21, 2008
7:23 pm
18138
... Did you find XstGetConsoleGrid? With the Console's grid number, you can use GUI commands on the console window to do all of that. -- Steve Gunhouse...
Steve Gunhouse
sgunhouse
Offline Send Email
Nov 21, 2008
7:35 pm
18139
I have not been able to find the gui commands for dursor position in the console window. Also, I would appreciate an example of setting a variable equal to a ...
ccearnheart
Offline Send Email
Nov 24, 2008
5:33 pm
18140
It's a "message", so you use the message handling functions: XuiSendMessage(grid, #SetTextCursor, pos, line, [left], [top], 0, 0) Grid is the grid number for...
Steve Gunhouse
sgunhouse
Offline Send Email
Nov 24, 2008
7:38 pm
18141
I have been trying to get the following to print at position b horizontally and 12 vertically down. It either generates an error or just prints at the top. ...
ccearnheart
Offline Send Email
Dec 4, 2008
5:54 pm
18142
... You would probably be interested in the FORMAT$() function described here along with a sample program. ... string = FORMAT$( format$, argument ) Return a...
cw2008can
Offline Send Email
Dec 5, 2008
4:59 am
18143
Hello xbasic, I know how to open an existing file for read or write but what if I only want to check for the existence of a file. I have experimented with: ...
Kerry Miller
n0wiq49
Offline Send Email
Dec 5, 2008
5:43 pm
18144
... only ... XstGetFileAttributes (file$, @attributes) XstFindFile (file$, @path$[], @path$, @attr) file$ = File name to search for path$[] = String array of...
cw2008can
Offline Send Email
Dec 5, 2008
7:00 pm
18145
Hi: The mouse messages returned in the following code segment are the same number as returned by #GetGridNumber for XuiLabel grids. But for XuiTextArea grids a...
old2newbie
Offline Send Email
Dec 6, 2008
3:01 am
18146
... An xuiTextArea has 3 kids - the text itself, and the two scroll bars. Answer your own question - try clicking on one of the scroll bars. Yeah, you'll get a...
Steve Gunhouse
sgunhouse
Offline Send Email
Dec 6, 2008
3:06 am
18147
Is there a fresher "XBasic Manual" than the one I have down loaded (1988-1999)? -- Kerry N0WIQ My web site URL is: http://mywebpages.comcast.net/n0wiq...
Kerry Miller
n0wiq49
Offline Send Email
Dec 6, 2008
10:50 am
18148
I guess I'm dense. I have tried repeatedly to get the Function listed below to print at vertical position 12 in the Cinsole window. Doesn't work. Please give...
ccearnheart
Offline Send Email
Dec 8, 2008
1:17 pm
18149
... The Console window is meant to display simple information in a line-by-line mode. If you really want to display exactly the way you want, you need to...
cw2008can
Offline Send Email
Dec 8, 2008
4:14 pm
Messages 18119 - 18149 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