I use Irrlicht with VB.NET (Visual Basic 2005 Standart Edition)
Can everyone say me how i can hide the CMD Window?
Thanks for help.

Code: Select all
Private Function PickDriver() As video.DriverType
If rbD3D9.Checked Then
Return Irrlicht.Video.DriverType.DIRECT3D9
End If
If rbD3D8.Checked Then
Return Irrlicht.Video.DriverType.DIRECT3D8
End If
If rbOGL.Checked Then
Return Irrlicht.Video.DriverType.OPENGL
End If
If rbSoft1.Checked Then
Return Irrlicht.Video.DriverType.SOFTWARE
End If
If rbSoft2.Checked Then
Return Irrlicht.Video.DriverType.SOFTWARE2
End If
Return Irrlicht.Video.DriverType.NULL_DRIVER
End Function
Code: Select all
device = New IrrlichtDevice(driverType, New core.Dimension2D(c.ClientRectangle.Width, c.ClientRectangle.Height), 32, False, False, False, _
True, c.Handle)
Code: Select all
device = New IrrlichtDevice(DriverType.DIRECT3D9, New core.Dimension2D(c.ClientRectangle.Width, c.ClientRectangle.Height), 32, False, False, False, _
True, c.Handle)