Hello Ventuzians!
THE FORUMS ARE CLOSED!

Please join our discord server HERE!! << click me :D

We are shutting our Ventuz Forum, but don't worry, it will all be archived for you to search in if you have a query. From now on, please add all your comments, questions or observations into our Discord Server

Thanks for the great time - see you on discord!!
Dee, Karol, Daniel and the whoooole Product and Support team!

How to launch 2 instances without dialog windows

Q and A about functionality and how to solve a special task for your application.

Moderator: Support

Post Reply
User avatar
Robert
Posts: 318
Joined: 21 Jan 2012, 09:25
Location: Toulouse - France
Contact:

How to launch 2 instances without dialog windows

Post by Robert » 28 Sep 2018, 17:46

Hi,

Maybe the answer is in the forum but i can't find it. Is there a way to avoid the dialog window when we want to launch a second instance of Ventuz?

Regards,

R

User avatar
Robert
Posts: 318
Joined: 21 Jan 2012, 09:25
Location: Toulouse - France
Contact:

Re: How to launch 2 instances without dialog windows

Post by Robert » 29 Sep 2018, 09:41


chriss0212
Posts: 666
Joined: 18 Jan 2012, 20:56
Location: wuppertal
Contact:

Re: How to launch 2 instances without dialog windows

Post by chriss0212 » 12 Oct 2018, 10:13

Hi Robert

another workaround in Ventuz6 is:

Code: Select all

Example()

Func Example()
    Run('"C:\Program Files\Ventuz Technology Group\Ventuz 6\VentuzPresenter_1.exe" "D:\Ventuz\Projekte\Ventuz6\Test\Test.vzp" -log:0 -default:/zwei', "C:\Program Files\Ventuz Technology Group\Ventuz 6", @SW_SHOWMAXIMIZED)
    WinWait("Test")
    Sleep(1000)
	Send("#+{Right}")
    Sleep(1000)
    Run('"C:\Program Files\Ventuz Technology Group\Ventuz 6\VentuzPresenter.exe" "D:\Ventuz\Projekte\Ventuz6\Test\Test.vzp" -log:0 -default:/eins', "C:\Program Files\Ventuz Technology Group\Ventuz 6", @SW_SHOWMAXIMIZED)

EndFunc   ;==>Example
This will open a presentation on screen 1 in director mode... will wait until its open... then move it to the second screen... and open the next presentation on screen 1 ;)

I think it only works in virtual fullscreen!

Greetings

Christian

Post Reply