Support Forums

Full Version: [Help]Connecting Form Windows
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
As many of you know, Teamviewer opens up with 2 windows, both connected to each other or atleast have the ability to snap together when moved close to one another.

How does one acheive this in VB.NET?

Thanks.
Take a look on it. http://www.codeproject.com/KB/cs/RemoteD...rpNET.aspx
Or this. http://www.codeproject.com/KB/vb/mstscui_net.aspx

Those aren't exactly what are you searching for, but might help you.

Greetings.
Not sure how to do that but it sounds interesting thing to code...
(05-04-2011, 05:08 AM)Nympho Wrote: [ -> ]Take a look on it. http://www.codeproject.com/KB/cs/RemoteD...rpNET.aspx
Or this. http://www.codeproject.com/KB/vb/mstscui_net.aspx

Those aren't exactly what are you searching for, but might help you.

Greetings.

Good links. But I believe he was talking about two forms moving concurrently.


Try this out:
Code:
.
    Private Sub Form1_Move(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Move
        Form2.Left = Me.Left + Me.Width
        Form2.Top = Me.Top
    End Sub