Did anybody know how to execute command on ConEmu through Vb.Net? This is the code that i tried for command prompt, and it works well. But when i tried on changing the cmd.exe to ConEmu.exe, it does not execute my "script.py". That's all. Thanks.
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Shell("cmd.exe /k python script.py")
Application.Exit()
End Sub
End Class