Hi,

Having opened cmd.exe by using a process, how can I now open it without a Titlebar or borders?

Code:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Dim p As New System.Diagnostics.ProcessStartInfo
        p.FileName = "cmd"
        proc.StartInfo = p
        proc.Start()
    End Sub
TIA

Rock