Hello.
I use a button to locate a file, and it puts the location in the textbox as "C:\file.exe\" I need the "" so when a user select a folder with a space in it it wont see it as a new input.
OpenFileDialog1.ShowDialog()
Dim filename As String = OpenFileDialog1.FileName
TextBox1.Text = Chr(34) & filename & Chr(34)
But later i need the same location of the textbox but without the "" (Chr(34))charachters. How can i make it so it removes those characters out of the textbox?