Llevo despierto mas de 34 horas sin exito... llevo mas d 6 anos sin usar vba...
Necesito un codigo k haga Hide a DoS y y escoja el archivo de la misma carpeta... no quiero poner C:\Musica... o algo asi...

Tambien k use el comando WaitForExit()

Este hace k DoS se vea...

ProgressBar1.Value = ProgressBar1.Minimum
Dim myProcess As Process = System.Diagnostics.Process.Start("original.bat")
myProcess.WaitForExit()
ProgressBar1.Value = ProgressBar1.Maximum
ProgressBar1.Value = ProgressBar1.Minimum
Dim myProcess As System.Diagnostics.Process = New System.Diagnostics.Process()
myProcess.StartInfo.FileName = "mybat.bat"
myProcess.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden
myProcess.Start()
ProgressBar1.Value = ProgressBar1.Maximum
Este me da un error... myProcess.Start() The system cannot find the file specified

Me estoy volviendo loco......