Not sure how much you are trying to scroll but -1500 may be your problem. Did you mean -150?LibFunc>user32,mouse_event,r,MOUSEEVENTF_WHEEL,0,0,-1500,0
Search found 112 matches
- Fri Feb 06, 2009 2:55 am
- Forum: Technical / Scripting
- Topic: Mouse Scroll
- Replies: 3
- Views: 5080
- Thu Feb 05, 2009 11:49 pm
- Forum: Technical / Scripting
- Topic: Mouse Scroll
- Replies: 3
- Views: 5080
- Sat Jan 31, 2009 6:37 pm
- Forum: General Discussion
- Topic: Compile Workflow Macros
- Replies: 4
- Views: 7503
If you have Macro Scheduler pro or above you just save the script, open it up in Macro Scheduler pro and create an exe. It would be nice though to have a button we could just push that would do it in workflow. Nice thought. Of course we could just write a script to do this for us. It would also be n...
- Wed Jan 28, 2009 4:49 am
- Forum: General Discussion
- Topic: How do I update my new email address
- Replies: 3
- Views: 5881
- Mon Jan 26, 2009 1:29 am
- Forum: Technical / Scripting
- Topic: VBScript and Excel
- Replies: 4
- Views: 6563
- Mon Jan 26, 2009 1:22 am
- Forum: General Discussion
- Topic: How do I update my new email address
- Replies: 3
- Views: 5881
How do I update my new email address
Anyone know How I can update my new email address so that I can continue recieving notices?
Ive searched the whole site and cant find a page for this.
Please let me know if you have an answer for me
Thanks
Ive searched the whole site and cant find a page for this.
Please let me know if you have an answer for me
Thanks
- Sat Jan 24, 2009 11:56 pm
- Forum: Technical / Scripting
- Topic: VBScript and Excel
- Replies: 4
- Views: 6563
dont work for me
im using excel 2007 in vista and I get the same thing.
Was this resolved with a new install
Thanks
Was this resolved with a new install
Thanks
- Fri Jan 16, 2009 4:39 am
- Forum: Technical / Scripting
- Topic: Outlook Execute Macro
- Replies: 7
- Views: 9982
Im using vista now but you can write down every step you take to do this manualy and then code the steps. Im not sure if this can be done while outlook is minumized or not. After thinking about it I used a perl script to copy to a differant folder but you can do this with ms if you want. just set ou...
- Tue Jan 13, 2009 4:50 pm
- Forum: Technical / Scripting
- Topic: Outlook Execute Macro
- Replies: 7
- Views: 9982
If you can tell me exactly what you would like to do that would help. Do you really need to move it to the desktop? You should be able to do move the file straight to a folder from outlook and do with it all you actions from there. Try going through the process manually taking down notes of each and...
- Sun Jan 11, 2009 8:37 pm
- Forum: Technical / Scripting
- Topic: DDE_SERVICE_INVALID error pulling data from Excel
- Replies: 7
- Views: 8352
Just a thought
Just a thought, but every once in a while I forget to look at what version of excel the worksheet was made in.
The other day I had the same problem
The code said .xls when infact it was a 2007 version, .xlsx
Probably not your issue, but thought it might help
The other day I had the same problem
The code said .xls when infact it was a 2007 version, .xlsx
Probably not your issue, but thought it might help
- Fri Jan 09, 2009 1:23 am
- Forum: Beginners
- Topic: How to keep a script running and window up
- Replies: 1
- Views: 3678
if you are just monitoring the folder waiting for a file. create your new script, click on the tab that says trigger. Make trigger type: Folder event Make trigger: New file in folder. Make folder path: Path to the folder that the new file will be created in. Now when ever there is a new file in that...
- Thu Jan 08, 2009 11:12 pm
- Forum: General Discussion
- Topic: script to open Uninstall Program Folder
- Replies: 0
- Views: 3871
script to open Uninstall Program Folder
Code: Select all
ExecuteFile>C:\Windows\system32\appwiz.cpl,
- Thu Jan 08, 2009 3:22 am
- Forum: Technical / Scripting
- Topic: Open/Close CD Tray?
- Replies: 5
- Views: 7434
As to your first question of open and close add another - colCDROMs.Item(i).Eject if you want to loop, use the do and loop at beginning and end if you have two cd roms and just want the second one to open use: For i = 1 to colCDROMs.Count - 1 instead of: For i = 0 to colCDROMs.Count - 1 VBSTART Sub ...
- Thu Jan 08, 2009 2:32 am
- Forum: Technical / Scripting
- Topic: Outlook Execute Macro
- Replies: 7
- Views: 9982
yes the very first script I wrote did this exact thing. What exactley do you want it to do? I had the subject line indicate the customer number, it would then put the email into the customer folder and change their webpage as specified by the attachment. If you need help please indicate your system,...
- Sun Dec 28, 2008 7:18 pm
- Forum: Technical / Scripting
- Topic: Screen Capture Issue
- Replies: 15
- Views: 15471
just run this script and let us know what happens
WaitWindowOpen>Export Manager - [E0HSRG: Containers / Purchase Orders / Com. Invoices / On-Hand Info] Wait>1 GetScreenRes>sX,sY ScreenCapture>0,0,%sX%,%sY%,c:\CP_Macros\Screen.bmp FindImagePos>c:\CP_Macros\ContainerNo.bmp,c:\CP_Macros\Screen.bmp,20,1,xPos,yPos,imgs Wait>2 If>%imgs%>0 MouseMove>%xPo...