Make a custom window design in visual basic - Printable Version +- NiftyHost Forums (Archive) (https://niftyhost.chary.us/support) +-- Forum: Technology (https://niftyhost.chary.us/support/forum-7.html) +--- Forum: Coding (https://niftyhost.chary.us/support/forum-12.html) +--- Thread: Make a custom window design in visual basic (/thread-1292.html) |
Make a custom window design in visual basic - man007 - 08-05-2011 I am a visual basic programmer so I decited to share some of my knowlege with you. I will tell you how to make a custom window design. Ok it is very simple... First of all, change the FormBorgerStyle to none. Then add a panel. Now add this code after the Private Class Form1 : Code: Dim A As New System.Drawing.Point() This move the form when you hold and move the panel you endered... Now add three picturebox which will minimize,maximize and close the form... - To the picturebox that will minimize the form add this code : Code: Me.WindowState = FormWindowState.Minimized Code: i = i + 1 - To the picturebox that will close the form add the this code : Code: End If you have problem to create your custom form design download an example I have made for you : http://adf.ly/18UqS If you have any question ask me here! :) |