Launch 9 vb.net app then horzonital window command

  • Thread starter Thread starter LN Mike
  • Start date Start date
L

LN Mike

I have a batch file that executes the same vb.net exe nine times. After the
nine apps load I want windows to show all the apps in horizontal tile.

Solution does not need to be in the batch file. What is the easiest and
quickess way to launch 9 of the same vb.net exe and the horizontal tile?
 
Hello Mike,

Thanks for using Microsoft Newsgroup Support Service, my name is Ji Zhou
[MSFT] and I will be working on this issue with you.

We can write a little script file to tile windows horizontally. And we call
that script from our batch after we launch 9 applications.

Script codes look like,

Set objShell = CreateObject("Shell.Application")
objShell.TileHorizontally

For more detailed information, please see the following link,
http://www.microsoft.com/technet/scriptcenter/resources/qanda/jul05/hey0726.
mspx


Best regards,
Ji Zhou
Microsoft Online Community Support

Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
(e-mail address removed).

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/en-us/subscriptions/aa948868.aspx#notifications.
 
Hi Mike,

I am writing to check the status of the issue in your side. Does my post
above address your question and concern? If you need any future help,
please feel free to update the thread.


Best regards,
Colbert Zhou
Microsoft Online Community Support

Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
(e-mail address removed).
 
Back
Top