프로그래밍언어/VB.NET
화면 우측하단에 띄우기
부산딸랑이
2013. 9. 4. 17:30
Dim height = My.Computer.Screen.Bounds.Height
Dim width = My.Computer.Screen.Bounds.Width
Dim p As New Point
p.X = width - Me.Width
p.Y = height - Me.Height - 50
Me.Location = p