2. RE: EDS GUI
- Posted by Tony Steward <tony at locksdownunder.com> Dec 10, 2001
- 456 views
Hi Tone, Well done looks great, runs lightning fast - Congrats. I will use this a lot as I did the last release. It is great for testing databases and being able to see if you created exactly what you thought you created. I would like to see an option to lock the two lists together so that when you scroll one the other is in sync. Or even a Sync button to re align the two. Anyhow only had a quick look will play more later. Tony Steward tone.skoda at siol.net wrote: > URL is: > http://www10.brinkster.com/tskoda/euphoria.asp#EDSGUI > Size is: 446 KB > > Here is readme.txt: > > E D S G U I > -------------- > > Release date: 9. December 2001 > Run with: exw.exe version 2.3 > > Euphoria Database System Graphical User Interface. > > Description: > This program is viewer for Euphoria database files (.edb). > File size can be unlimited large - viewing it will allways be same fast. > > Installation: > You can run EDSGUI.reg so that when you will click .edb files in Windows > they will open with EDSGUI. > You will need to change path to EDSGUI.exw in EDSGUI.reg. > You can run Build_Large_Test_Database.exw to build large test database. > > Details: > I completeley rewrote this version from previous version. > I coded this one with my new programming style. > > Plans: > If I'll get some feedback I will develop it further into complete editor > and better viewer. If not then I don't know If I'm going to develop it > further. > > What needs to be repaired: > When you scroll treeview items are all collapsed. > This is not good and should be repaired in next releases. > There is also a lot of flickering when scrolling, > that should also be repaired. > > by Tone ©koda > e-mail: tone.skoda at siol.net > website: http://www10.brinkster.com/tskoda > >
3. RE: EDS GUI
- Posted by Henri.Goffin at sbs.be Dec 10, 2001
- 454 views
Hi Tone, just to mention a small bug. On my NT4 I had to redefine integer variable "new_hot_icon" in proc "create_toolbars ()" as an atom. This is not the first time. I already had to do that with other programs as well. Apparently NT (and probably W2K) uses a bigger range of values for handles than W98/ME does. BTW, I'm still wondering why there is an _integer_ type in Euphoria. When is it better/mandatory to use integer instead of atom? Henri Goffin > -----Original Message----- > From: tone.skoda at siol.net [SMTP:tone.skoda at siol.net] > Sent: Sunday, December 09, 2001 5:21 PM > To: EUforum > Subject: EDS GUI > > <http://www10.brinkster.com/tskoda/euphoria.asp#EDSGUI> > Size is: 446 KB > > Here is readme.txt: > > E D S G U I > -------------- > > Release date: 9. December 2001 > Run with: exw.exe version 2.3 > > Euphoria Database System Graphical User Interface. > > Description: > This program is viewer for Euphoria database files (.edb). > File size can be unlimited large - viewing it will allways be same fast. > > Installation: > You can run EDSGUI.reg so that when you will click .edb files in Windows > they will open with EDSGUI. > You will need to change path to EDSGUI.exw in EDSGUI.reg. > You can run Build_Large_Test_Database.exw to build large test database. > > Details: > I completeley rewrote this version from previous version. > I coded this one with my new programming style. > > Plans: > If I'll get some feedback I will develop it further into complete editor > and better viewer. If not then I don't know If I'm going to develop it > further. > > What needs to be repaired: > When you scroll treeview items are all collapsed. > This is not good and should be repaired in next releases. > There is also a lot of flickering when scrolling, > that should also be repaired. > > by Tone > ©koda > e-mail: tone.skoda at siol.net <mailto:tone.skoda at siol.net> > website: <http://www10.brinkster.com/tskoda> > >
4. RE: EDS GUI
- Posted by Matthew Lewis <matthewwalkerlewis at YAHOO.COM> Dec 10, 2001
- 456 views
> -----Original Message----- > From: tone.skoda at siol.net [mailto:tone.skoda at siol.net] > > I would like to see an option to lock the two lists together so that > > when you scroll one the other is in sync. Or even a Sync > button to re > > align the two. > > I'd recommend what I did with your previous version, which was to only show the data for the selected key. Matt Lewis
5. RE: EDS GUI
- Posted by Derek Parnell <ddparnell at bigpond.com> Dec 11, 2001
- 454 views
> > BTW, I'm still wondering why there is an _integer_ type in Euphoria. > When is > it better/mandatory to use integer instead of atom? > > > Henri Goffin Integers are faster when you can guarrentee that the numbers are less than about one billion (2 ^ 30). Which means that they are NOT safe to hold RAM addresses. ------- Derek
6. RE: EDS GUI
- Posted by Matthew Lewis <matthewwalkerlewis at YAHOO.COM> Feb 07, 2001
- 475 views
> From: CK Lester [mailto:cklester at yahoo.com] > On the GUI for EDS, what do the Tabs represent? I would guess > those are > tables. > > Then keys on the left and data on the right... but if I click > on a key, it > doesn't change anything on the right. > > Can somebody explain to me how this is set up and why? > The way it was originally coded was that all records were shown on the right, and all keys on the left. I made some changes to my copy, and sent it to Tone, but I'm not sure if he included them, because I get an error (asp.inc isn't found by his server) at his page. Also, with my mods, you'll need to modify win32lib slightly (should be fixed in the next release) to handle treeviews properly. I can forward the message (it comes with an 8K attachment or I'd send it to the list) to anyone privately. It allows you to click on a key and see the record data for that record. It's very useful for debugging when using EDS. Matt Lewis