Search the web
Sign In
New User? Sign Up
powerpro-beginners · Windows PowerPro For Beginners
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 740 - 769 of 2225   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
740
Hello powerpro-beginners, Why can't i get a simple key command to auto select all and copy to the clipboard. I've tried *Keys ^a^c and it just won't work. ...
John Morse
john63960
Offline Send Email
Nov 4, 2004
11:17 pm
741
... Try adding a tiny wait *Keys ^a{w2}^c Where are you using this? If it's still not working.... David Troesch | Atlanta, GA | ICQ# 2333123 Life is short....
davidt.pproyg@...
datconsulting
Online Now Send Email
Nov 5, 2004
12:52 am
742
Thanks, this is working some at least, but it isn't responding until like the second or third time i press the button. ~John ... dpdc> Try adding a tiny wait ...
John Morse
john63960
Offline Send Email
Nov 5, 2004
4:09 am
743
Hello John, I often use a command: Keys ^a^c (for Ctrl-A Ctrl-C) in my text editor (metapad) and it always works well without any wait inserted between ^a and...
Alan Martin
alanmartin_au
Offline Send Email
Nov 5, 2004
5:56 am
744
Okay, I got it to work, I checked send slow keys, and then used this ^t{w2}%t{w2}{tab}{w2}{down}{w2}{enter}{w2}^a{w2}^c And it pulls up a list of articles...
John Morse
john63960
Offline Send Email
Nov 5, 2004
12:38 pm
745
Whoops! Forget that, I just had to add an alt+tab alt+p Alt+tab I don't know what I was thinking. DuH ~John Friday, November 5, 2004, 6:36:40 AM, you wrote: ...
John Morse
john63960
Offline Send Email
Nov 5, 2004
1:04 pm
746
Hello PowerPro-Beginners, Is there anyway to tell PowerPro to repeat a series of keys, and certain number of times. For example, I would like to have it do...
John Morse
john63960
Offline Send Email
Nov 6, 2004
11:44 pm
747
... Put this in a script file Local Counter For(Counter = 1; Counter <= 10; Counter = Counter + 1) Keys ...
davidt.pproyg@...
datconsulting
Online Now Send Email
Nov 7, 2004
1:47 am
748
How do I configure a double row of buttons? I would like a grid 2x5 of buttons, not just a single row....
swhimebaugh
Online Now Send Email
Nov 9, 2004
3:32 pm
749
... Place an item in your commandlist where you want the row of buttons to break of: *Format NewBarRow Or *Format NewBarRowLine David Troesch | Atlanta, GA...
davidt.pproyg@...
datconsulting
Online Now Send Email
Nov 9, 2004
7:37 pm
750
How do I use the string commands to get test to display in lower case? s = case ("lower", "test") how exactly does it need to be entered for the word test to ...
pharm_dog
Offline Send Email
Nov 17, 2004
3:52 am
751
... Exactly as you have it...but since "test" is already in lower case, you will see no difference. Are you testing this, just to see if you have the right...
davidt.pproyg@...
datconsulting
Online Now Send Email
Nov 17, 2004
4:16 am
752
... you will ... Using a note ... letters "test" to ... you're ... it's ... http://www.tightvnc.com ... Forgive me for being dense but I still can't get this...
pharm_dog
Offline Send Email
Nov 17, 2004
1:22 pm
753
<snip> ... Use this in the command of the hotkey: Keys &(case ("upper", "test")) Or do("Keys", case ("upper", "test")) On the 2nd, note that the case() is not...
davidt.pproyg@...
datconsulting
Online Now Send Email
Nov 17, 2004
1:49 pm
754
If I start adding features such as timers, scheduled events, etc., do I incur a penalty in PC performance? Just looking at taskmanager, it seems that Powerpro...
edbro9
Offline Send Email
Nov 22, 2004
5:11 pm
755
... Don't worry a bit. Powerpro maintains the slimmest memory requirements of any program out there, and adding functions/features makes negligible difference...
davidt.pproyg@...
datconsulting
Online Now Send Email
Nov 22, 2004
5:52 pm
756
How can I open a new note with the date category set to today? I have tried: *Note - Open - cat "date" *Note - Open - cat "date today" *Note - Open - cat...
edbro9
Offline Send Email
Nov 23, 2004
4:11 pm
757
... *Note open cat &(date) Or Do( "Note", "open cat " ++ date ) ^ The space is important David Troesch | Atlanta, GA | ICQ# 2333123 Powerpro - The ultimate...
davidt.pproyg@...
datconsulting
Online Now Send Email
Nov 23, 2004
4:47 pm
758
Thank you very much. You have been a big help....
edbro9
Offline Send Email
Nov 23, 2004
5:03 pm
759
Hi there, just new with PowerPro and got a question: I've defined a bar with several commands on it (mybar1). What I want to do is this: I created a second bar...
jbkilian
Offline Send Email
Nov 24, 2004
3:28 pm
760
Hi there, how do I create a keyboard macro (I understood how to create keyboard macros from looking at the demo configuration) which automatically inserts a...
jbkilian
Offline Send Email
Nov 24, 2004
5:37 pm
761
... *Clip LongDate put the long date format (as defined in the regional setting of your windows) into the clipboard. Do one of two things: *Clip LongData More...
davidt.pproyg@...
datconsulting
Online Now Send Email
Nov 24, 2004
9:15 pm
762
Hi there, just playing around with the Keys command: *Keys [[DateTime(&(formatdate ("yyyy-MM-dd",date))T&(formattime ("HH:mm:ss",time)))]] SHOULD produce...
jbkilian
Offline Send Email
Nov 25, 2004
9:18 am
763
Hello jbkilian, j> I've defined a bar with several commands on it (mybar1). j> What I want to do is this: j> I created a second bar (mybar1) and try to execute...
Alan Martin
alanmartin_au
Offline Send Email
Nov 26, 2004
1:01 am
764
I am trying to use several macros but sometimes the hotkey character gets sent after the desired text. My hotkey character is "." For example; I have a macro...
edbro9
Offline Send Email
Nov 30, 2004
7:51 pm
765
... Try this as: LParam1 = {fast}P.O. Box{sp} Or LParam1 = {slow}P.O. Box{sp} ... Make a difference? David Troesch | Atlanta, GA | ICQ# 2333123 Free...
davidt.pproyg@...
datconsulting
Online Now Send Email
Nov 30, 2004
8:26 pm
766
... Yes, it did! {fast} seemed to work. Thanks....
edbro9
Offline Send Email
Nov 30, 2004
8:50 pm
767
I just upgraded from 3.8 to 4.1 and everything seems OK except... The date and time label on my first button has disappeared. All I get is a blank button. In...
gellis85254
Offline Send Email
Dec 2, 2004
8:39 pm
768
... How big a blank button? Is it the size as if there was text there, or is it tiny? I'd think that you're having a color/skin problem there, as the *Info ddd...
davidt.pproyg@...
datconsulting
Online Now Send Email
Dec 3, 2004
2:57 am
769
Just got the latest version of Power Pro and am using it for the first time.WOW is all I can say. The functions that this thing can do boggles my mind. Where...
Michael Ryan
kbao5611
Offline Send Email
Dec 4, 2004
12:07 am
Messages 740 - 769 of 2225   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help