Save Dialog In Visual Studio (save text, images etc) (vb.net)

preview_player
Показать описание


Thanks for watching. Hope this video was helpful, leave a like if it was. Please comment for problem-solving.
Рекомендации по теме
Комментарии
Автор

very good and short explanation, it works. Thanks lot.

joha
Автор

Easy work also Years later in 2021 thx for this short and easy explaining, hope you will not stopp making Tuts...

joha
Автор

Also, you can add the code line
SaveFileDialog1.Filter = "Text files | *.txt"
So that you won't have to do the whole + ".txt' thing

igalko
Автор

Can you save the entire form with labels and data input in textboxes to a file and when you open it all input data are there?

posttension
Автор

I wish somebody can tell me how can I save multiple image file from open picture box?

lytheeya
Автор

Can you make a video on Save & Load a file with multiple textboxs.

theofficialamt
Автор

How about if i want to save an image from picture box?

ahmadrifki
Автор

I wish somebody can tell me how can I save data entered to picturebox with QR code please?

mounaimbelaaribi
Автор

I have question that how I save 'wav file?

yvxtxhc
Автор

Here is the code
SaveFileDialog1.Filter = "Text Files (*.txt)|*.txt"
SaveFileDialog1.FileName = Form1.txtCustName.Text & "_" & Format(Today, "mmddyy") & "_" & Format(TimeOfDay, "hhmmss") ' This will give a auto file name based on CustomerName + Date (mmddyy) + Time (hhmmss) - that way you dont have to type file name each time and even with same name - files will NOT be over written as the time stamp will be different
= "D:\RTS\Signed Forms" ' Save location where the txt files will be saved.
SaveFileDialog1.ShowDialog()


Dim rLocation As String
rLocation = SaveFileDialog1.FileName

& ".txt", "" & txtFinalBox.Text, True)

ruffirder