Open window in second screen.

Hi everyone,
How can I open a window on the second screen that is connected to a PC (Screen(1))

Thanks in advance for any reply.

It seems that

self.left = screen(1).Left

does the trick. Is this the proper way to do it?

Yes this is the right direction but you should take into consideration:

Always use ScreenCount Method first, otherwise when accessing non existing screens you will recieve an OutOfBounds Exeception. Do this not only on program start but on each opening of your windows. Keep in mind that the Main Screen (with Mac OS X dock and Toolbars) is always Screen 0.

Thanks Tomas,
I will keep your advice in mind…