WinBatch Tech Support Home

Database Search

If you can't find the information using the categories below, post a question over in our WinBatch Tech Support Forum.

TechHome

Launching WinBatch and Other Apps
plus

Can't find the information you are looking for here? Then leave a message over on our WinBatch Tech Support Forum.

How to Zoom an Application when Launched

Keywords: runzoom 

There is no way to make an app open zoomed with windows alone. From the command line you can access this program which will zoom whatever you run for you. Your command line will look like:
	zoom.wbt notepad.exe 
Here's the script:
Switch param0
     case 0
	  break
     case1
	  RunZoom(param1, "")
	  break
     case param0
	  params = " "
	  For i=2 to param0
	       params=StrCat(params, param%i%, " ")
	  Next
	       RunZoom(param1, params)
	       break
EndSwitch

Article ID:   W13282
Filename:   Zoom an App when Launched.txt
File Created: 1999:04:15:16:52:58
Last Updated: 1999:04:15:16:52:58