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...
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)...
Have you copied the xbrun.dll file to the windows or windows system folder and renamed it xb.dll ? ... From: arca765 <arca765@...> Subject: [xbasic]...
 ... 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...
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...
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...
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...
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...
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...
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...
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....
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...
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....
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...
... 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...
... 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...
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 ...
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...
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. ...
... You would probably be interested in the FORMAT$() function described here along with a sample program. ... string = FORMAT$( format$, argument ) Return a...
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: ...
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...
... 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...
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...
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...
... 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...