I have this code which saves the dump file in a static path or destination
Process.Start("C:\xampp\mysql\bin\mysqldump.exe", "-u root ipoint -r C:\Backup\ipoint.sql")
MsgBox("Backup Database Created")
I want to choose the path by using the folder browser dialog which will put the path on a textbox but this code below doesn't work
Dim path2 As String = tb_path.Text
Process.Start("C:\xampp\mysql\bin\mysqldump.exe", "-u root ipoint -r '" & path2 & "'\ipoint.sql")
MsgBox("Backup Database Created")