Search found 35 matches
- Tue Oct 31, 2006 1:28 pm
- Forum: Technical / Scripting
- Topic: Acrobat Reader continues to run in the background
- Replies: 13
- Views: 18590
Thanks. I tried this: Run>Net Stop PurgeIE_Service But it didn't work. I also tried this (note the last line), but it didn't work either. VBSTART Sub killProcess(pgm) set wmi = getobject("winmgmts:") sQuery = "select * from win32_process " & "where name='" & pgm & "'" set processes = wmi.execquery(s...
- Tue Oct 31, 2006 2:05 am
- Forum: Technical / Scripting
- Topic: Acrobat Reader continues to run in the background
- Replies: 13
- Views: 18590
Hi, I have a new task-manager process that is running and doesn't seem to get killed with your VBScript code above. The name of the process is PurgeIE_Service. It continues to run even after I close the main program (called PurgeIE). This process does not end in .exe on the task manager, like most o...
- Thu Oct 26, 2006 3:33 pm
- Forum: Enhancement Suggestions
- Topic: Non-flashing System Tray Icon would be nice.
- Replies: 0
- Views: 5526
Non-flashing System Tray Icon would be nice.
When a macro is running, if you could change the system tray icon to yellow as usual, but without the flashing, that would be real nice. The flashing always draws my eyes up to that part of the screen, when my eyes should really be focusing on the work at hand. Of course it's nice to know somehow th...
- Wed Aug 16, 2006 11:11 am
- Forum: Technical / Scripting
- Topic: Acrobat Reader continues to run in the background
- Replies: 13
- Views: 18590
- Wed Aug 16, 2006 12:23 am
- Forum: Technical / Scripting
- Topic: Acrobat Reader continues to run in the background
- Replies: 13
- Views: 18590
Damn, I wish I knew VB!! Looking at your script, I'm at a loss as to where to insert AcroRd32.exe in order to get this script to work for me. Can anyone help? All I want to do is hit a hotkey, and have AcroRd32.exe terminated from my TaskManager Processes tab. It looks like your VB script will work,...
- Tue Aug 15, 2006 8:19 pm
- Forum: Technical / Scripting
- Topic: Acrobat Reader continues to run in the background
- Replies: 13
- Views: 18590
Acrobat Reader continues to run in the background
Hi, If I open a .pdf file in my browser, and then close my browser, AcroRead32.exe continues to run in the background. I can make it stop by opening up Task Manager, and going to the Processes tab and making it stop that way. But I would prefer to use a hotkey since it happens a little more frequent...
- Sat Jul 15, 2006 11:47 pm
- Forum: Technical / Scripting
- Topic: Keep messages from becoming active window?
- Replies: 2
- Views: 4935
- Sat Jul 15, 2006 4:39 am
- Forum: Technical / Scripting
- Topic: I can't pass a variable to the EDI command...?
- Replies: 2
- Views: 4961
- Sat Jul 15, 2006 3:05 am
- Forum: Technical / Scripting
- Topic: I can't pass a variable to the EDI command...?
- Replies: 2
- Views: 4961
I can't pass a variable to the EDI command...?
I'm trying to pass a variable to the edi command, but I can't seem to make it work. I've tried the following simple macro as an experiment. input>banana input>apple edi>c:\blue.ini, banana, apple, fig newton After running this command, I enter the following inputs: For the banana input, I enter yell...
- Sat Jul 15, 2006 1:44 am
- Forum: Technical / Scripting
- Topic: Keep messages from becoming active window?
- Replies: 2
- Views: 4935
Keep messages from becoming active window?
Is there a way to keep messages from becoming the active window when they pop up using the MSG> command? For example, let's say I'm browsing the internet with Internet Explorer, and one of my macros goes off and a message pops on the screen and says, "hello", ... is there a way to keep that message ...
- Sat Jun 17, 2006 11:57 pm
- Forum: Enhancement Suggestions
- Topic: Better ability to grab windows
- Replies: 2
- Views: 8597
- Sun Jun 11, 2006 11:43 am
- Forum: Enhancement Suggestions
- Topic: Better ability to grab windows
- Replies: 2
- Views: 8597
Better ability to grab windows
Currently, you have only one command that you can use to identify a window. That's the GAW command, which returns the window name. However, there are many windows that don't seem to work well with this command. Windows such as child windows and alert windows, and certain windows where the title is c...
- Wed Feb 22, 2006 4:08 pm
- Forum: Technical / Scripting
- Topic: Can you display and update real time within a button?
- Replies: 4
- Views: 6938
. Oh yes, thank you for responding, I think I understand better now. For those of you who understand the old BASIC computer programming language (my only computer programming experience, and that was from 20 years ago), I was confusing the word "modal" to be the equivalent of the BASIC command, "inp...
- Wed Feb 22, 2006 12:49 pm
- Forum: Technical / Scripting
- Topic: Can you display and update real time within a button?
- Replies: 4
- Views: 6938
Thanks for your reply, but if possible I would like to put the real time into a MODAL dialog. I already have a large modal dialog set up which stays open throughout the day and constantly waits for input. I would like to insert the current time into the modal dialog, give or take a minute (it doesn'...
- Tue Feb 21, 2006 6:35 pm
- Forum: Technical / Scripting
- Topic: Can you display and update real time within a button?
- Replies: 4
- Views: 6938
Can you display and update real time within a button?
I want to display (and update) the real time within a button in a modal dialog. Is this possible? I tried the following script, but it didn't work. It displays the real time initially, but the time doesn't update. gettime>time dialog>timerdialog left=300 top=300 width=300 height=300 button=time,20,2...