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.