-- ... Thanks for all your Help on this subject. I think that should give me ample to play with. I have an Idea which needs a help on mouse entry as well Next...
Is the array always the same? e.g. SUB Allmessage XgrMessageNames(@count,@mName$[]) FOR a=1 TO count PRINT a,mName$[a] ', 'IFZ a MOD 5 THEN PRINT NEXT a END...
Is the array always the same? e.g. SUB Allmessage XgrMessageNames(@count,@mName$[]) FOR a=1 TO count PRINT a,mName$[a] ', 'IFZ a MOD 5 THEN PRINT NEXT a END...
Hi Omar Before yo go too far Have a good look at the demo program "Editors.x" including all the subroutines - it may give you some Ideas (you ll find this in...
... While the array can change - if you have code that registers a new message at some point - chances are you can ignore any new messages anyway in that they...
Thanks again Steve For my needs I think this array wiil be most usefull May or may not be of use to others So My Main Program Looks Like This ;- (NB I use the...
I'm new to XBasic. Two questions for now. 1. The following code sometimes prints 0s no matter what grid I pass the mouse over, until I press a mouse button at...
Yes I ve had a look at this as well Now with the api minimised all the co-ordinates are 32000 + But the coordinates given by XgrPeekMessages() is correct and...
Hi: I suggest that you download Vincent Voois program apicshif.x, (pictureshifter) which changes the mouse cursor when entering and exiting a grid, and again...
Is it possible to turn off this new fangled yahoo HTML look? Message size has easily quadrupled, from a few K to 15-20K. There's also external images being...
... I got this figured out. It's not a simple "turn of HTML" click, but it can be done. In case anyone is interested, here's the instructions I found: ...
... Thanks Alvin! I just love it when someone else decides what your preferences are....NOT! :) I only have the yahoo account for this list. I don't use it for...
... There was a setting on the website for that, though knowing Yahoo it is probably hard to find. I'm still receiving text only (with attachments) - by the...
Steve Gunhouse wrote: <Snipola> ... <Snipola> Thank you, Steve. I've now set that one. BTW, your email came in as text only so I think the setting I changed...
I'm working on an application where quake data is displayed three dimensionally. For now, I have options to display the hypocenters as points, dots, circles,...
... What's your routine for a filled circle? I suppose an optimal solution would be something based on the Bresenham (sp) ellipse, though I'm not totally...
Steve Gunhouse wrote: <Snipola> ... Utterly brute force. Just go pixel by pixel in a grid the size of the desired circle and test if it's within the circles'...
Is it safe to have multiple instances of the PDE open at the same time? I've been doing this for a while and not noticed any problems. I do this to reference...
I have uploaded a file to the members area, "drawtest2.x". It uses the XBRandom library. The buttons are: Run : run the test Quit: quit the program points,...
I would be interested in knowing how the following for drawing a filled circle and a filled ellipse compare in speed to your routine. I make no claims as...
... Should be fine, but I'd have to look at some of the cleanup routines to be certain. As long as you always refer to windows and grids by their assigned...
I do run code in 2 or 3 or 4 at one time sometimes the same program !! and have not had any adverse effects. so while I wouldnt guarentee it multiple pdes...
Hi: I have found code in message #877 for rotating a bitmap, "for printing in landscape mode". I have been experimenting with it using a copy of Vincent Voois'...
Is my face red. I found that I had picked up the formula "from XGR for calculating the number of bits per pixel when printing the sidth on that second line. ...
Please find attached a replacement the date functions "Dates.X", in your Files Collection. Kindest Regards Robin Warner ... Do you Yahoo!? Get on board. You're...
Cool... Too bad it still lacks a week-number calculator :P But anyway, i reply to say there may still be some space on yahoogroups to post the file in the file...
Hi: Would there be value in changing INC and DEC to allow STEP as used in FOR ... NEXT loops. I recently had occasion to use a FOR ... NEXT loop with a STEP...
Not that i know of any better method. The C / CPP world has an extra option to shorten additions and multiplex algorithms by doing x += 3 instead of x = x + 3 ...