hi there, with a VBA macro, started within an Outlook contact form, I am extracting a mobile phone number from the displayed Outlook 2007 contact. I put it on...
I currently have the monotonous task of moving text from multiple text files into another application. Its quite boring and slows down my production...
... Feel free to post some details here if you don't get what you need. If you need to include files, you could create a folder and post them (preferably...
Hello! Okay, my mouse driver is a microsoft driver. The mouse is a dell laser mouse with a cord. I tried *Window Min active with left caption anywhere with...
... production drastically. ... a little unsure ... -snip- This is interesting - this is one of the original reasons why I started using Power Pro. I set up a...
Had a google Example To assign a printer name "toto" RUNDLL32 PRINTUI.DLL,PrintUIEntry /y /n "toto"' This is how to do it from command line. I am not near a...
Mr. Fisher, Yes, I found that dos command too - I didn't think of it using it in PowerPro, however - I just wondered if PP didn't already have it built in. It...
Hello, In my tray are five powerpro icons and several other icons from other programs. Is there a way to ensure that the powerpro set is always first in line?...
I think there isn't any way to manage the order of active buttons. What I said in my previous post is only the order of creation. When selecting "Standard" the...
Hello! In my program, Inkscape, I have a bar that shows via context so that it shows only when Inkscape is active and open. On that bar is a button so that...
Hey folks! After much testing, this script works like a dandy. I have only used and tested it in Photoshop 7.0, which is what I use. You can have as many open...
Actually, I am not talking about a PP bar; I am talking about icons in the System Tray itself. I keep 5 special icons there and attach various commands to...
... As a workaround: you could use the tool taskbarshuffle http://www.freewebs.com/nerdcave/ which allows to reorder taskbar- and systemtray-items Best regards...
Taskbar Shuffle is for applications that are running and open. These programs have buttons in the Taskbar, not (usually) the System Tray. The System Tray is...
Now I know what you are doing. For that setup, there is no need to install tray support. The icons are placed there without it. I don't think it's possible to...
I wish to determine the current day in a script and take various actions depending on what day it is. I believe I will need to use a plugin to achieve this....
Check PPST.chm file in PowerPro folder, then: Scripts library - intermediate scripts "site launcher" by Alexander Cicovic (the PPST author) I think it covers...
... I have worked it out. This is what I came up with in order to test my theory (and it worked!); Day=(Date.WeekDay(Date.Today)) if (Day==0) Jump Sunday Quit ...
... Mousetrap plugin features: o Lock mouse movement in horizontal or vertical axis o Scroll non-foreground window o Scroll comboboxes o Decelerate mouse...
... FWIW, you could do this: local todaysfunc=formatdate("dddd",date.today)++"()" do(todaysfunc) quit Function Sunday() win.debug("0") Function Monday() ...
Hi Sheri, i like searching minimal-code-solutions. What about this: local l_weekdays = "Sunday(0) Monday(1) Tuesday(2) Wednesday(3) Thursday(4) Friday(5)...