Hi Dimitris, Happy New Year ! If I run the gui below, and then select the left combo1 (with the mouse NOT with tabbing it) and do a tab to the second combo2,...
3812
Dimitris Keletsekis
gui4cli
Jan 4, 2007 7:37 am
... Yes.. Its a bit difficult to catch so I haven't traced it down yet, but I will.. Dimitris...
3813
reneatch
Jan 4, 2007 4:17 pm
Hi All, I couldn't find anything in the docs and examples, how to prohibit multiple line selections in a Listview. Is there an option I can set ? Or, do I have...
3814
Fer Stoopman
fmstoopman
Jan 4, 2007 7:49 pm
... add the event: xonlvclick <ID of the listview> lv select none; lv select Now all selections using Shift/Control-click will be removed and the last one...
3815
reneatch
Jan 4, 2007 8:56 pm
Hi Fer, Thanks for your help. You are right. It will prevent from having multiple lines selected, but it's confusing that multiple lines are coloured... Please...
3816
reneatch
Jan 4, 2007 10:09 pm
Hi Fer, I think I found a solution for my problem. It even checks, clicking on a empty line. Replace all code for 'xOnLVClick mylv' with following: // ---...
3817
Dimitris Keletsekis
gui4cli
Jan 5, 2007 11:37 am
... You can use the ONECLICK xListview style. Dimitris...
3818
Fer Stoopman
fmstoopman
Jan 5, 2007 11:45 am
... Hi Rene The solution using XonLVClick works on 'normal39; LV's only. In fact, it also works on owner lv's but you can't see it because of the coloring...
3819
reneatch
Jan 5, 2007 12:32 pm
Hi Fer, Hi Dimitris, Thank's for your help. I like the features of the OD LV's and the double-click I normally use to bring up a second window to edit my ...
3820
Fer Stoopman
fmstoopman
Jan 5, 2007 2:17 pm
Hi Rene, ... To bring up another window use xondoubleclick (also triggers xonlmb) which could be useful to pass the variables obtained from xonlmb to the new...
3821
reneatch
Jan 5, 2007 2:35 pm
Hi Fer, ... Implemented. That works fine. G4C is so handy :-)) ... In the main window, I have a selection of entries. Each of them, I can modify by opening a...
3822
Fer Stoopman
fmstoopman
Jan 6, 2007 1:27 pm
Hi Dimitris, I have a small gui that searches for all open windows, which used to work fine but now it freezes G4c for a few minutes or forever. The code is...
3823
Fer Stoopman
fmstoopman
Jan 7, 2007 12:45 pm
Hi Dimitris, To get a list of all open windows I now use an alternative way using a listview that loads #window. This list shows much more than only visible or...
3824
reneatch
Jan 7, 2007 11:32 pm
Hi Fer, Could you please explain, how you filled up your lv. What do you mean with '... loads #window'? Thanks, Rene...
3825
Dimitris Keletsekis
gui4cli
Jan 8, 2007 7:43 am
... That's a better way of getting a window list.. The use win #first, #next method is wrong because windows may open or close while you are in the loop.. ...
3826
Fer Stoopman
fmstoopman
Jan 8, 2007 12:11 pm
... mean ... Hi Rene, The following script is part of a WindowControl which can be used to manipulate open windows like setting top, topmost, bottom, hiding ...
3827
Fer Stoopman
fmstoopman
Jan 8, 2007 2:10 pm
... Hi Rene, Minor corrections: If you want to activate a selected window (just like Alt-Tab does) add after the Xlistview event: use win "$lvvar" win front...
3828
gui4cli@yahoogroups.com
Jan 8, 2007 4:44 pm
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 : /Perl and...
3829
reneatch
Jan 8, 2007 11:01 pm
Hi Fer, Thanks for your code. After I have realized, that I can not start the program directly from the editor (SciED), it works perfect now :-)) Best thanks....
3830
reneatch
Jan 12, 2007 10:06 am
Hi Fer, If I start the gui within SciEd I always get following errors written to the output window: *ERROR* File: "P:/gui4cli/SciEd/test...
3831
Fer Stoopman
fmstoopman
Jan 12, 2007 1:27 pm
Hi Rene, ... I never use SciEd because of incompatibility with my keyboard. In a certain country setting SciEd does not accept double quotes. For that reason I...
3832
Dimitris Keletsekis
gui4cli
Jan 12, 2007 2:42 pm
Its probably some "$" charcatre that's confusing it. Do this: xroutine findviswin SET DEEPTRANS OFF use lv #this lvWin etc.... That will stop it from...
3833
reneatch
Jan 12, 2007 8:05 pm
Hi Dimitris, Hi Fer, 'SET DEEPTRANS OFF' solved my problem. Thanks a lot, Rene...
3834
jncrft
Jan 22, 2007 7:16 am
I've written a full screen rtf editor. I have three problems. One, I can't see how to attach settings to keystrokes -- <Ctrl>b for bold. Two, I don't see how...
3835
deduikertjes
Jan 22, 2007 9:34 am
Dear Dimitris, I think I found a little bug. The command Run $aFolder Explore should open the windows explorer at the specified folder. It doesn't on my system...
3836
deduikertjes
Jan 22, 2007 9:43 am
I briefly looked into this. Cmenu Extender can be of use. This nifty little program allows you to define your own actions in the explorer context menu. The...
3837
Fer Stoopman
fmstoopman
Jan 22, 2007 12:57 pm
Hi MArco ... there are 3 methods to open explorer from g4c: 1. run "$aFolder" 2. run "$aFolder" "" explore the second opens explorer in folder view. When...
3838
Dimitris Keletsekis
gui4cli
Jan 22, 2007 1:46 pm
... Yep.. Run explorer "c:/mypath" will tell you that the path doesn't exist, whereas Run explorer "c:\\mypath" works fine. You'd think that someone at ms...
3839
deduikertjes
Jan 22, 2007 3:59 pm
Dimitris, Fer, I'm really sorry and ashamed. I overlooked the arguments... I was put of a little by the fact that it did work with a file. thankx, MArco...
3840
Fer Stoopman
fmstoopman
Jan 22, 2007 9:38 pm
Hi Jon ... use xonkey ^b or any other (see in the example code below) ... All initial settings are normally done in the XonLoad and XonOpen events. (See below)...