1. RE: Tables in Windows
- Posted by Andy Drummond <kestrelandy at xalt.co.uk> Apr 09, 2001
- 491 views
Yeah, I thought there might be. But can I find it? Can I ---! An array of little windows, text boxes or whatever, is a possible but it's pretty revolting, isn't it. So - anyone else out there know where I can access a spreadsheet-like table? Andy Thomas Parslow (PatRat) wrote: > > I need to display tabulated data - like 24 hours by 7 days - in a > > Windows program. I can't see any nice way to do this; a fixed-size font > > is not elegant, and multiple windows is even less so. Anybody got any > > ideas? > > Andy Drummond > > Maybe a list control? > I'm sure there was a control which does exactly what you want, it > shows a spreadsheet like grid, but I can't remember the name and it's > not been wrapped in win32lib. > > I suppose you could do it all manually, create a grid of text boxes or > labels or whatever. That shouldn't be to hard to do.... > > Thomas Parslow (PatRat) ICQ #:26359483 > Rat Software > http://www.rat-software.com/ > Please leave quoted text in place when replying > > >
2. RE: Tables in Windows
- Posted by Matthew Lewis <matthewwalkerlewis at YAHOO.COM> Apr 09, 2001
- 464 views
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. ------_=_NextPart_000_01C0C10F.E67F0C50 charset="iso-8859-1" > -----Original Message----- > From: David Cuny [mailto:dcuny at LANSET.COM] > Andy Drummond wrote: > > > So - anyone else out there know where > > I can access a spreadsheet-like table? > > Some time back, I had written an emulated 'spreadsheet' style > control. I > don't know where the code is; I suspect that you can find it > in the archives > somewhere. I don't think it ever made it. However, I've kept it. It's a little rough, but should at least get you started. On a related note, my work on making Eu COM friendly is progressing slowly but surely. Actually, the object I'm working to wrap is a spreadsheet ActiveX control. (MTS, I've tried numerous times to send you the code, but it always comes back.) I've discovered (in a roundabout way--of course this wasn't well documented) that it's necessary for a container or COM client to implement at least one interface for communication with the COM objects it activates. It's just a matter of figuring out the API now. If anyone has worked with COM before (in C, for instance--VB doesn't count) and written apps that do this sort of thing (esp. calling IQuickActivate::QuickActivate or implementing IOleClientSite / IAdviseSink ) I'd appreciate any insights or source code :) to help me along. Matt Lewis ------_=_NextPart_000_01C0C10F.E67F0C50 Content-Type: application/zip; name="grid.zip" Content-Transfer-Encoding: base64
3. RE: Tables in Windows
- Posted by Judith <camping at txcyber.com> Apr 10, 2001
- 465 views
In the next release of IDE, there will be table and array handling. Coding is almost done. You will be able to drop controls onto a pseudo control for the first 'cell' and then right click to define the number of rows, columns and spaces between. It is not nearly as nice as David's spreadsheet demo because I wanted the table/array to be unspecific. If David has no objections, is there any interest in a pseudo control in IDE that will generate David's spreedsheet and the supporting routines? Judith David Cuny wrote: > Andy Drummond wrote: > > > So - anyone else out there know where > > I can access a spreadsheet-like table? > > Some time back, I had written an emulated 'spreadsheet' style control. I > don't know where the code is; I suspect that you can find it in the > archives > somewhere. > > -- David Cuny > >
4. RE: Tables in Windows
- Posted by Andy Drummond <kestrelandy at xalt.co.uk> Apr 10, 2001
- 479 views
Judith, I look forward with bated breath for your next IDE, then. I'll hang on till it turns up. As I've said before, your IDE is superb and I'd much prefer to do the whole program Windows coding through that, rather than in bits and bobs tagged on. So - we'll wait and see! Judith wrote: > In the next release of IDE, there will be table and array handling. > Coding is almost done. You will be able to drop controls onto a pseudo > control for the first 'cell' and then right click to define the number > of rows, columns and spaces between. It is not nearly as nice as David's > > spreadsheet demo because I wanted the table/array to be unspecific. > > If David has no objections, is there any interest in a pseudo control in > > IDE that will generate David's spreedsheet and the supporting routines? > > Judith > > > David Cuny wrote: > > Andy Drummond wrote: > > > > > So - anyone else out there know where > > > I can access a spreadsheet-like table? > > > > Some time back, I had written an emulated 'spreadsheet' style control. I > > don't know where the code is; I suspect that you can find it in the > > archives > > somewhere. > > > > -- David Cuny > > > > > >
5. RE: Tables in Windows
- Posted by Judith <camping at txcyber.com> Apr 10, 2001
- 461 views
Derek, Hold off on Table/Array or the Spreadsheet? Or both? When do you think this framework might be available? I'm just about done coding Table/Array. If you will be awhile I may continue with what I'm doing. I can easily strip it out when your routines are available. Spreadsheet (thanks David!) would be a little longer if I added the routines David mentioned were needed in his original posting last year. Judith Derek Parnell wrote: > Judith, > you might like to hold off with writing too much code for this, because > I'm > putting together a framework in which new controls (pseudo or otherwise) > can > be added to win32lib and hopefully also some built-in support for IDEs. > > ------ > Derek Parnell > Melbourne, Australia > "To finish a job quickly, go slower." >
6. RE: Tables in Windows
- Posted by Andy Drummond <kestrelandy at xalt.co.uk> Apr 10, 2001
- 469 views
Derek, Your addition to Win32Lib sounds good - will the individual cells be addressable from an array - sequence - so I can write them from a loop? Will they be editable cells, which I need, and can I read them by indexed array again? Yeah, yeah, I know, it's not done yet, go mooorreee sssllloowwwlllyyyy pplleeaasee. But I need to plan ahead according to what will (hopefully) be available in the (very) near future. Derek Parnell wrote: > Judith, > you might like to hold off with writing too much code for this, because > I'm > putting together a framework in which new controls (pseudo or otherwise) > can > be added to win32lib and hopefully also some built-in support for IDEs. > > ------ > Derek Parnell > Melbourne, Australia > "To finish a job quickly, go slower." > > ----- Original Message ----- > From: "Judith" <camping at txcyber.com> > To: "EUforum" <EUforum at topica.com> > Sent: Tuesday, April 10, 2001 8:56 PM > Subject: RE: Tables in Windows > > > > > > > > In the next release of IDE, there will be table and array handling. > > Coding is almost done. You will be able to drop controls onto a pseudo > > control for the first 'cell' and then right click to define the number > > of rows, columns and spaces between. It is not nearly as nice as David's > > spreadsheet demo because I wanted the table/array to be unspecific. > > > > If David has no objections, is there any interest in a pseudo control in > > IDE that will generate David's spreedsheet and the supporting routines? > > > > Judith > > > > > > David Cuny wrote: > > > Andy Drummond wrote: > > > > > > > So - anyone else out there know where > > > > I can access a spreadsheet-like table? > > > > > > Some time back, I had written an emulated 'spreadsheet' style control. I > > > don't know where the code is; I suspect that you can find it in the > > > archives > > > somewhere. > > > > > > -- David Cuny > > > > > > > > > > > > <snip>
7. RE: Tables in Windows
- Posted by Judith <camping at txcyber.com> Apr 11, 2001
- 475 views
Well, I plan the first stab at spreadsheet from IDE will just be the demo (grid.exw) David wrote last year with some more key handling and anything else David suggested in last year's note that looks easy. I don't expect to be adding any formula functions either. I'll probably pop it into IDE's next release which I expect will be the first week of May. Judith Derek Parnell wrote: > Hi Andy, > I'm experimenting with a Grid control written in Euphoria. It is NOT a > spreadsheet control because it doesn't support formulae. > > Yes, individual cells are addressable. The functions to do this include > ... > > SelectCell( col, row ) > MoveToCell ( deltaCol, deltaRow ) > > I'm a long way off finishing it and I suspect Judith's control will be > out > first. > > The next win32lib version will be out soon but I'm very busy at the > office > and can only work a couple of hours a day on win32lib. Anyhow, v056 > should > be alpha available in a few mor days. Hopefully before Easter as I'm > going > on a week's camping holiday with the family. > > ------ > Derek Parnell > Melbourne, Australia > "To finish a job quickly, go slower." >
8. RE: Tables in Windows
- Posted by Andy Drummond <kestrelandy at xalt.co.uk> Apr 12, 2001
- 476 views
Hi there again. I just got hold of Matt Lewis' grid.ew code, and after a few minutes customising it does just what I want. I'd have thought that something like that generated by IDE would be good, but the integration of it into IDE might present a lot more problems that I'd expect. For now, for this job, it is fine. I added code to handle non-arrow-key type keys, and load the gridData sequence/array, so changing data and retreiving new data are dead easy. Andy Judith wrote: > Well, I plan the first stab at spreadsheet from IDE will just be the > demo (grid.exw) David wrote last year with some more key handling and > anything else David suggested in last year's note that looks easy. I > > don't expect to be adding any formula functions either. > > I'll probably pop it into IDE's next release which I expect will be the > first week of May. > > Judith > > > > Derek Parnell wrote: > > Hi Andy, > > I'm experimenting with a Grid control written in Euphoria. It is NOT a > > spreadsheet control because it doesn't support formulae. > > > > Yes, individual cells are addressable. The functions to do this include > > ... > > > > SelectCell( col, row ) > > MoveToCell ( deltaCol, deltaRow ) > > > > I'm a long way off finishing it and I suspect Judith's control will be > > out > > first. > > > > The next win32lib version will be out soon but I'm very busy at the > > office > > and can only work a couple of hours a day on win32lib. Anyhow, v056 > > should > > be alpha available in a few mor days. Hopefully before Easter as I'm > > going > > on a week's camping holiday with the family. > > > > ------ > > Derek Parnell > > Melbourne, Australia > > "To finish a job quickly, go slower." > > > >
9. RE: Tables in Windows
- Posted by Matthew Lewis <matthewwalkerlewis at YAHOO.COM> Apr 12, 2001
- 478 views
> -----Original Message----- > From: Andy Drummond [mailto:kestrelandy at xalt.co.uk] > I just got hold of Matt Lewis' grid.ew code, Just to clarify, it's actually David Cuny's code (what isn't around here :), I've just kept it handy. :) Matt Lewis