프로그래밍언어/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



'프로그래밍언어 > VB.NET' 카테고리의 다른 글

그래프  (0) 2013.09.20
비주얼스튜디오2012 최근항목 제거  (0) 2013.09.08
바탕화면에 이미지 그리기  (0) 2013.09.03
화면위에 이미지그리기  (0) 2013.09.02
VB.NET 프로시저 유형  (0) 2013.09.01