Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Help]Connecting Form Windows
#1
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.
Reply
#2
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.
Reply
#3
Not sure how to do that but it sounds interesting thing to code...
[Image: just-cause-2-header.jpg]
Reply
#4
(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
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Problem in form Chuggaism 3 1,779 11-07-2013, 06:35 PM
Last Post: AceInfinity
  [VB.NET] Animated Form Extend [SRC] Fragma 6 5,229 10-10-2013, 12:18 PM
Last Post: Saket
  Greation a promission for users in main form or setting deveco 2 867 11-13-2012, 01:33 PM
Last Post: TAHMINA123
  [Discuss]Console Coding Or Windows Form? [Discuss] Business.Gov 6 1,834 10-01-2012, 11:27 PM
Last Post: XDarkCoder
  [Tutorial] Fade In / Out Form [Source] ₠o™ 4 1,179 12-09-2011, 01:21 AM
Last Post: ₠o™

Forum Jump:


Users browsing this thread: 1 Guest(s)