G Guest Sep 25, 2005 #1 hi, i kno u can create different shaped buttons and such, but is there any way to create a different shaped form? thanks
hi, i kno u can create different shaped buttons and such, but is there any way to create a different shaped form? thanks
M m.posseth Sep 25, 2005 #2 yep possible works with images and defining the client area http://msdn.microsoft.com/library/d...apedWindowsFormsControlsInVisualStudioNET.asp
yep possible works with images and defining the client area http://msdn.microsoft.com/library/d...apedWindowsFormsControlsInVisualStudioNET.asp
P Phil G. Sep 25, 2005 #3 Try this simple example from a book, User Interfaces in VB.Net by Matthew MacDonald (Apress - ISBN 1-59059-044-954995). Imports System.Drawing.Drawing2D Private Sub Form1_Load(ByVal sender as System.Object, ByVal e as System.EventArgs) Handles MyBase.Load Dim Path as New Graphics Path.Add(0, 0, Me.Width, Me.Height) Me.Region = New Region(Path) End Sub HTH, Phil
Try this simple example from a book, User Interfaces in VB.Net by Matthew MacDonald (Apress - ISBN 1-59059-044-954995). Imports System.Drawing.Drawing2D Private Sub Form1_Load(ByVal sender as System.Object, ByVal e as System.EventArgs) Handles MyBase.Load Dim Path as New Graphics Path.Add(0, 0, Me.Width, Me.Height) Me.Region = New Region(Path) End Sub HTH, Phil
K Ken Tucker [MVP] Sep 26, 2005 #4 Hi, http://www.windowsformsdatagridhelp.com/default.aspx?ID=72f58d3f-2cb5-4d51-b148-a2eda88e06ee Ken