I want to set a path when saving. Here's my code. This code is supposed to set a path but it didn't work
SaveFileDialog1.ShowDialog()
SaveFileDialog1.InitialDirectory = "C:\Users\owner\Downloads"
I want to set a path when saving. Here's my code. This code is supposed to set a path but it didn't work
SaveFileDialog1.ShowDialog()
SaveFileDialog1.InitialDirectory = "C:\Users\owner\Downloads"
You have to set
InitialDirectory
before you're showing your dialog.