Tutorial Membuat Bentuk form menjadi unik di vb.net 2015

Berawal dari keisengan saya dan mengolah kembali pelajaran dikampus serta membaca tutor di internet.. aghh kepanjangan yuukk ke TKP.

copikan coding berikut dalam form load saudara :

Me.FormBorderStyle = 0

        Dim p As New Drawing2D.GraphicsPath()
        Dim Pojok As Integer

        Pojok = 250

        p.AddLine(0, 0, Me.Width - Pojok, 0)
        p.AddArc(New Rectangle(Me.Width - Pojok, 0, Pojok, Pojok), -90, 90)
        p.AddLine(Me.Width, Pojok, Me.Width, Me.Height)
        p.AddLine(Me.Width - Pojok, Me.Height, Pojok, Me.Height)
        p.AddArc(New Rectangle(0, Me.Height - Pojok, Pojok, Pojok), 90, 90)

Me.Region = New Region(p)

run aplikasi saudara dan taraaaa ::::: 



EmoticonEmoticon