transparent edges
i am working on a project and i want to make a gui.
how can i cut out edges to make them transparent??
Example:


how can i cut out edges to make them transparent??
Example:




Private Sub Form1_Load(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles MyBase.Load
Me.Opacity = 0
' or Me.Opacity = 0.0 , can't remember
End Sub
Me.FormBorderStyle = _
System.Windows.Forms.FormBorderStyle.None
Me.TransparencyKey = System.Drawing.Color.Green 'or whatever your backround color is
