I put the say commands in the xOnOpen & xOnClose to see if something else was cloisng the window, but XOnClose only executes when I quit the main gui. The...
4400
nichot20
Nov 2, 2007 9:49 am
... This is now very bizzarre! I have added a msg box after my other guiopen command that was failing thus:- xRoutine job_done say 'job done' guiopen...
4401
Fer Stoopman
fmstoopman
Nov 2, 2007 12:25 pm
... Hi, It's not bizarre, but logical because Msgbox is a synchronous message box; i.e. while the box is shown all other activities are stopped until you press...
4402
nichot20
Nov 2, 2007 3:49 pm
... Good point ... There are only two guiquit commands and they are for when the main window quits:- xOnClose GuiQuit #this GuiQuit done_window If I don't have...
4403
Fer Stoopman
fmstoopman
Nov 2, 2007 7:09 pm
... I suppose the main gui should stay open when the job is done. If not, it explains the disappearing of the pop-up window. ... does ... I've done some...
4404
pietpraet
Nov 3, 2007 8:40 am
Hi Dimitris and everyone interested, After applying the sort-command to a 'real life'-script with many columns with mixed number-, date- and string-data, I got...
4405
pietpraet
Nov 3, 2007 7:36 pm
Hi Dimitris When using xOnListview Field, there is a as far as I can see a bug : all "/" are converted to "\" automatically (and unwanted), which results in...
4406
gui4cli@yahoogroups.com
Nov 4, 2007 8:49 am
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the gui4cli group. File :...
4407
Dimitris Keletsekis
gui4cli
Nov 4, 2007 8:50 am
Hi, Try out the new version I uploaded to the Files->executables section. Dimitris...
4408
Dimitris Keletsekis
gui4cli
Nov 4, 2007 8:52 am
Hi Piet, The gui below works fine: G4C test WINDOW 126 90 367 373 "test" winattr style resize xOnLoad guiopen #this use lv #this idlv lv add '1' %title =...
4409
pietpraet
Nov 4, 2007 9:35 am
Hi Dimitris, your script below works fine, though I can't detect another approach of what I'm doing. The bug must be in my script, sorry I jumped to the wrong...
4410
pietpraet
Nov 4, 2007 9:38 am
Hi Dimitris, the style 'edit' (or is '-edit39; ?) allready exists, but could you consider adding the "noedit" as well ? I use a (owner-drawn) xlistview for...
4411
pietpraet
Nov 4, 2007 10:01 am
Hi Dimitris, great work ! Tested it so far only with the testscript. The '0' is now sorted correctly. There still is the strange shifting of the '0' or the...
4412
valery_vi
Nov 4, 2007 10:30 am
Hi, Maybe it will good news for you, Dimitris. I've created Ubuntu album and added screenshot of IconView example from Gui4Cli's Tutorial. It can work fine...
4413
chris.kevany
Nov 4, 2007 11:02 am
... Hi Piet, What you ask is what -edit does. Dimitris added -edit a short while ago to the owner drawn listviews. You can still edit by opening with enter but...
4414
pietpraet
Nov 4, 2007 12:37 pm
Hi Chris, tested it right away, and YES!, that's really it ! What a difference when working with very big listviews ! Thank's for mentioning, I must have...
4415
chris.kevany
Nov 4, 2007 12:58 pm
... Hi Piet, No you didn't overlooked it. It isn't in the help because it was a change in a single Gui4cli.exe upload to the files section here at Yahoo. I'm...
4416
pietpraet
Nov 4, 2007 1:04 pm
Hi again Dimitris, Tested it on the big script. Here I keep getting the most confusing results (without doing something, ONLY by clicking on the ...
4417
pietpraet
Nov 4, 2007 2:44 pm
Hi Dimitris, here are 2 identical testscripts but with one datafield changed, which demonstrates very good why the listviewsorting drives me crazy. Just run...
4418
Dimitris Keletsekis
gui4cli
Nov 4, 2007 2:49 pm
Hi Piet, Some info.. Stability Stable sorting algorithms maintain the relative order of records with equal keys (i.e. sort key values). That is, a sorting...
4419
pietpraet
Nov 4, 2007 3:31 pm
Hi Dimitris, after reading the info, I tried in both the testscripts and the big one, the extra rule : "set sort insert" (and then quick and shell), after the...
4420
Dimitris Keletsekis
gui4cli
Nov 4, 2007 6:30 pm
Hi Piet I don't understand.. I don't see anything wrong, except the Insert Sort doesn't keep the 0 in the same place every time. But they all sort the list...
4421
Dimitris Keletsekis
gui4cli
Nov 4, 2007 7:08 pm
Hi Valery, ... I'd never heard of this project.. Very interesting - I'll have to try it sometime. Do you have a link to the album? Dimitris...
4422
pietpraet
Nov 4, 2007 8:27 pm
Hi Dimitris, ... We seem to have very different interpretations of that little list, I'm very surprised. Let's focus on the sorting with the columnheaders,...
4423
Fer Stoopman
fmstoopman
Nov 4, 2007 10:13 pm
Hi Piet, For sorting a database I'm using 2 sort commands after each other to get a stable (and always the same) result. Although it seems not logical, it...
4424
Dimitris Keletsekis
gui4cli
Nov 4, 2007 11:31 pm
... You don't need to do it twice anymore. That was a bug and I've fixed it (I hope). Apparently the Insert sort is not that stable though.. Here is a test...
4425
pietpraet
Nov 5, 2007 6:56 am
Hi Fer and Dimitris, many databases give the option to sort first on a chosen column, then on a second, then on a third. At first sight, that seems to be what ...
4426
pietpraet
Nov 5, 2007 8:50 am
Hi Dimitris, I checked the configuration of the database I'm using till today. Seems like all my columns with numbers are NOT handled as 'type number', but as...
4427
Dimitris Keletsekis
gui4cli
Nov 5, 2007 10:29 am
... Well, it did result in the fixing of at least 1 important bug :) And I still have to fix the Insert sort. It seems to be inverting the order of all same...
4428
Fer Stoopman
fmstoopman
Nov 5, 2007 3:25 pm
Hi Dimitris, My results from your (excellent) example of sorting: (why not adding it to your tutorials??) When sorting 1 column only (the first) the sequence ...