View Single Post
  #8 (permalink)  
Old 05-12-2008, 02:32 PM
Xav's Avatar   
Xav Xav is offline
Code Warrior
 
Join Date: Mar 2008
Location: On God's Planet
Posts: 9,852
Last Blog:
Web slideshow in JavaS...
Rep Power: 78
Xav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud of
Send a message via MSN to Xav
Default Re: Creating a Class in Visual Studios.Net (Visual Basic Section)

You shouldn't need DirectX just to display a form! Use a simple Form object, and change its BackColor to Color.Blue, like so:
Code:
Dim f As New Form()
f.BackColor = Color.Blue
f.Show()
You can change any extra properties of the 'f' object before showing it, to make it look just the way you want it to.
__________________


Mr. Xav | Website | Forums | Blog
Reply With Quote