[VB] BlazedUp TuT: Using DotNetBar for a Better GUI

Design

User is banned.
Reputation
0
Create a new Project > name it whatever

Step 1: Add Reference > DevComponents.DotNetBar2.dll, Now Solution Explorer > Show All Files

Step 2: double click the Form1.Designer.vb
a61e52447908ba7bd79b37a0eaeacd0d.png


Step 3: where it says
Code:
Inherits System.Windows.Forms.Form
change it to
Code:
Inherits DevComponents.DotNetBar.Office2007Form

Step 4: Properties > EnableGlass > True

Step 5: Enjoy!

For MessageBoxes with a Better GUI

Step 1: Double Click The Form

Step 2: add
Code:
Imports DevComponents.DotNetBar

Step 3: the new messagebox code is
Code:
MessageBoxEx.Show("Test")
 
Back
Top