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,...
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...
... 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...
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...
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: // ---...
... Hi Rene The solution using XonLVClick works on 'normal' LV's only. In fact, it also works on owner lv's but you can't see it because of the coloring...
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 ...
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...
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...
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...
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...
... 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.. ...
... 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 ...
... 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...
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...
gui4cli@yahoogroups.com
Jan 8, 2007 4:44 pm
3829
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....
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...
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...
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...
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...
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...
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...
... 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...
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...
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)...