... I don't know that there is an option to not display the Name if you have entered a value. It's not required, and on my bar, if I blanked out the Name of...
... That's his diagnostic, but what he describes sounds like something else because an I/O bottleneck on its own shouldn't affect the responsiveness that much....
On Fri, 01 Feb 2008 12:06:36 -0000, "brucexs" ... lol - it works! :) Now I just have to wait until I next do one of these tasks that cause the problem to see...
On Fri, 1 Feb 2008 06:57:43 -0500, "Gardner, Paul G." ... Hi Paul. I thought about doing that - but naming the buttons is the only way I have of telling them...
... I'm muttering to myself now, best I bounce this off you. What I'm doing, in several plugins, is passing some user-chosen string back to PowerPro as an...
... If you can guarantee that \ is their escape character, no. But if you don't know the escape character, then you need to use esc. But then, if the string...
On Sat, 02 Feb 2008 16:04:26 +1100, Grumpy Gamer ... ha ha - it seems to work :) Had the always show bar with just the one 'show main PowerPro bar' button, and...
On Sun, 03 Feb 2008 01:00:34 +1100, Grumpy Gamer ... Yep - it works with The Bat too. Interesting thing I noticed when testing this though - when The Bat was...
Hi ! I was wondering if there is a way to clone an entire command list. As far as I found out CL-items can be cloned but not an entire CL. Any ideas ? Cheers...
For some reason, upon resolving the "|" after a drag&drop action, the file paths/names(s) containing spaces are put into quotation marks while those without...
... Oh yeah, I remember now, problem is user can specify his esc character. ... One hopes not. ... I guess there's not an expression I can evaluate to get...
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the power-pro group. File :...
power-pro@yahoogroups...
Feb 2, 2008 5:18 pm
32702
In PProConf go to Setup tab, click "Export as text" and save commandlist to file. Then bring up command list in Command Lists tab, click Properties button and...
Since I wanted the ... Possibly following functions wth _file_ will help cl.GetLastPressedType("barname") Returns "P", "D", or "H" depending on whether the...
... NO, that would be too easy. BTW, note that ?\02....\02 will work for any string that does not contain \02. That is the trick PowerPro uses in similar...
... But not useful if you want escaping to work within string? Getting user to specify escape character is good. I can make it an ini file setting for pipe...
Hi all ! Is there a way to make PPro click on a particular button or http-link shown on a website ? I thought the *Exec WindowInfo might help. I triggered that...
This method works to search for a user's escape char: ; FindEscapeChar.powerpro LOCAL NL, c FOR(LOCAL i= 2; i<256; i++) IF(i!=34)DO NL= EVAL(??"?++ ESC(?"\d"++...
... ...(snip)... Nice, filed. But I need some way for a _plugin_ to know user's escape character. I could make up to 256*2 or so calls to ppsv->evalExpr, but...
... What if you do an evalexpr of something like "!n@n#n$n%n^n&n*n(n)n{n}n|n\n:n;n" and checked to see if the result contained a newline and if so where? You'd...
... link ... Possibly if the button has a key-stroke alternative or maybe if it is always in the same place you can use tabs and enter to select it. But as you...
How do I do this? I tried replacechars(caption,"'"","") and replacechars(caption,"""",""), but neither did the trick. BTW, I use ', not / as my escape...
... The standard configuration uses \ I expect this would work: replacechars(caption, ?X"X, "") or this: replacechars(caption, "\x22", "") But possibly with...