Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
batch capture screenshot of applica
Name: MTec007 Date: May 15, 2008 at 14:37:13 Pacific OS: XP Home 2002 SP2 CPU/Ram: Celeron 1.10GHz, 128 Product: HP Pavilion 510w
Comment:
is there a way (maybe via a 3rd party app) to capture a screenshot of a specific running application and save it as a jpeg image, all from running a batch script? im not sure if HWND was implemented into DOS/CMD prompt but thats where a 3rd party application could come in. this would save me from opening a image editing application to save a screen shot.
As far as I know there is no way to achieve what you need even by a third party application.
A batch script runs in its own address space and is not aware of concurent processes. More, batches are aimed to text processing and can't handle images.
Last but not least, I suggest you post your next question on Programming Forum where a lot of guys are scripts' gurus and you can find more properly answers to NT batch questions.
Summary: I am trying to create a dos batch file, part of which requires validate the folder has not exceeded the given quota. So does anybody know any batch command (or batch file) which gives the size of fold...
Summary: On Windows 9x: The following line will work on the command prompt the way you want: for %%i in (*.jar) do set CPATH=%%CPATH%%;%%i But it simply doesn't work onto a batch file, and I couldn't get it wo...
Summary: I would do the following: 1 - Put the file names in a list 2 - Generate the random number list 3 - Copy Rename the selected files in list to a work directory. 4 - Move the selected files to ./oldPics ...