... Which BASIC? QB there is probably such a thing for (within limits - as symbol names aren't stored in the program the names assigned to variables would be...
I am trying to figure out how to get a help file set up that is accessed when the right mouse button is pressed. "Hint string" works fine but I don't know how...
The default path is the same as the current path, you may want to include the full path to your file just to be safe. Though we may wish to add a function to...
Hi guys Has anyone developed their own xbasic context/subcontext menus (in a gfx grid)? I was in need of such a menu system so i developed my own. Now i am in...
... It looks pretty neat... AFAIK there are not any published context menu's other than what is in the toolbox. Though it is not hard to design a window that...
well this is kind of like how i am doing i. at the minute my menu(s) is limited to a single buffer gfx grid. the menu is drawn each time if #mousedown=#help...
... Steve, I've been out of town for a few weeks so I've not been able to follow up on this. What I found was that this function is not declared in xb.def so ...
I finally figured out that the following lines will make things work: XstSetCurrentDirectory (@"c:\XBasic Work") XuiSetHelpFile (grid, #SetHelpFile, 0, 0, 0,...
Try calling 'XstGetCurrentDirectory (dir$)' right after load up, it should point to the path of your program. If called from within the XB IDE it will point to...
do not run this program, it seems to be a virus. i checked thru it via a hex editor. there seems to be alot of inet function calls inside plus a few email...
i use 'XuiSendMessage (#image, #SetCursor,#cursorCrosshair, 0, 0, 0, 0, 0)' to set the cursor type of my 'area' can i also set its colour? also, how can i...
XstGetCommandLineArguments (@argCount, @argv$ []) FOR pos==UBOUND(argv$[]) PRINT pos,argv$ [pos] NEXT pos Mike ... it ... the ... is ... of ... things ... to ...
sorry that should be, FOR pos=0 TO UBOUND(argv$[])-1 .. .. ... up, ... be ... things ... guess ... that ... the ... (or ... used ... is ... if ... to ... with...
... 0, ... colour? ... as ... Try a #SetColorExtra message: XuiSendMessage (grid,#SetColorExtra,cursorColor,-1,-1,-1,0,0) This works with XuiTextArea grids, at...
On Fri, 04 Jan 2002 22:38:32 -0000 "jsonnentag" <jsonnentag@...> ... Of course it did. You need a FOR loop to print array contents, otherwise you're just...
You can also set the current directory in your Windows shortcut. I use my old C:\xb directory (from XBasic 6.0022) as my work directory, just had to rename...
Hi, Just installed Xbasic for Win. I use an external editor to write my programs and for this I need to know: a)How possible to compile and execute (run) a...
ccollavin
ccollavin@...
Jan 5, 2002 5:35 pm
8634
... To compile from the command line just do the following: xb mysource.x nmake -f mysource.mak ... Do you refer to the XBasic console window in your second...
How would you like to get a FREE Advert free website hosted at www.rapidq.net in a sub domain for free, with unlimited webspace. Get the main xbasic people to...
I'm having problems loading multiple bitmap images into memory. I can't find a proper way having them loaded all into memory without getting "Operating System"...
... Seems a nice idea for another download mirror to get XBasic maybe even a good point of redirection for www.xbasic.com. Speaking about xbasic.com (.net,...
Generally - if you use ATTACH to put images into an array, you'll have to use ATTACH to access them. That would seem to be the best approach. And of course,...
Thanks, i've come a little further... Your solution works for as long as windows remain visible but everytime i overlap them i have to resend the image back to...
What you need is a buffer, or equivalently set the image into an invisible grid (an XuiImage grid) and then set that grid as the image source. Any time you do...
Just been looking into some strange behaviour regarding the #WindowMaximixed message, and found the following line in xui.x, FUNCTION XuiWindow(), SUB...