... Oh yes, not only to avoid spamming mailing lists with irrelevant stuff, but because it gives away too much information. Any hacker worth his degree in...
Hi Norbert, Try []WN 'FormName' - it will give you list of child objects in order they were created. Zorder supposed to be order in which objects where ...
I was looking more for the order which they are displayed. For example some objects a dragable and moveable, thus I can repositions one over or behind the...
Norbert, I think that the drag drop operation actually re-orders the result of []WN so it should still give you the desired information. A quick experiment...
Assuming there is a Form with 4 SubForms, determine the Handles of these: 'X.Y1'[]WG'Handle' 1443258 'X.Y2'[]WG'Handle' 5047868 'X.Y3'[]WG'Handle' 919012 ...
I tried the []wn approach and it doesn't seem to rearrange the order. I'd still prefer a pure APL approach before I step out into the Windows api. Thanks for...
OK, I wasn't sure if it re-ordered and you are right - it doesn't. You may be forced to go the API route (the NameFromHandle method may come in handy there). ...
Fruits of 2 days at the XML Summer School last week: Vector Online now has an XML/RSS feed. Point your aggregators at www.vector.org.uk/weblog/index.rdf sjt ...
Norbert, you did ask for the z-order, and I assumed in general. As there is no method implemented in APL for that, there will be no other way that to use the...
Hi Peter, Greate job. Next question will be to set zorder :) Do you have unswer on this question? /Alex ... __________________________________________________ ...
Hi Alexander, if you really need it, of course I will do it. But be aware that, if you enumerate the windows on the desktop level, you will get dozens or even...
Hi Just to remaind you that this years APL MOOT is almost apon us. No need to book, just turn up, even if its only for part of a day. Hope to see you all at...
Hi all :) I have writte some stuff in which I call an external program (using []CMD). Unfortunately, after starting the external app, my program continues. I...
Hi Michael, Is the distinction you need: []CMD'notepad' '' allows your app to continue after notepad opens, and []CMD'notepad' does not allow your app to...
It would be great if that was the answer - BUT: I want to show the app window and interact with it, and without using the 2and argument in []CMD I'm not...
Hi Michael, many of my applications use quadCMD mostly running Windows os –FTP and with Dyalog I have never faced behaviour you just described. At least in...
Hi Kimmo, as discussed with Graeme, I'm using []CMD'cmd' 'Normal', because I need to show the app-window and interact with it, it's not something which could...
Hi As has been mentioned here before, I suggest you look at using the windows scripting host object and the exec method see msdn under windows scripting host....
Hello Michael, I know your problem very well. I faced it myself a couple of years ago. I was fortunate enough to have Lanzavecchia sharing a solution with me,...
Some newbie GUI questions: Can I make the border of a group invisible by setting its EdgeStyle to 'None'? Can I control the colour of a group's Caption by...
You can set 'Border' to 0 during creation of the group in []WC statement. It will make it invisible. You can not reset that property once group was created. I...