Hello Community,
I was wondering if there is a way to stick a cmd window/process that i called from my vb form to the bottom of the form like the picture: (below)
form2
And so where ever i move the form the cmd windows will also follow. Also is there a way to hide the cmd windows in the taskbar.

Please help

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Dim process As New Process
        With process
            With .StartInfo
                .FileName = "cmd.exe"
                .WorkingDirectory = "C:\Windows\System32\cmd.exe"
            End With
            .Start()
        End With
    End Sub

i don't know if its can stick together.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.