Hey all,
how can I save the content of a textbox to a .txt file with the save dialog??
Dim dlg As SaveFileDialog = New SaveFileDialog()
Dim res As DialogResult = dlg.ShowDialog()
Thats my SaveDialog it works fine, but how can i save the content of the textbox to a file now??
Start Free Trial