Windows Forms: How to save files using SaveFileDialog component in C#
By FoxLearn 7/12/2017 9:20:40 PM 6.96K
How to save files using SaveFileDialog Component with RichTextbox in C#
Step 1: Click New Project, then select Visual C# on the left, then Windows and then select Windows Forms Application. Name your project "SaveFile" and then click OK
Step 2: Design your form as below
Add a SaveFileDialog, OpenFileDialog component to your form, then add "Rich Text Format|*.rtf" to Filter property of SaveFileDialog, OpenFileDialog
Step 3: Add code to handle your form
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace SaveFile { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void btnOpen_Click(object sender, EventArgs e) { if (openFileDialog.ShowDialog() == DialogResult.OK) richTextBox.LoadFile(openFileDialog.FileName); } private void btnSave_Click(object sender, EventArgs e) { if (saveFileDialog.ShowDialog() == DialogResult.OK) richTextBox.SaveFile(saveFileDialog.FileName); } } }
VIDEO TUTORIALS
- How to Create Multiple pages on the Form using Panel control in C#
- How to insert Math Equation to RichTextBox in C#
- How to Send and Receive email in Microsoft Outlook using C#
- How to Print Windows Form in C#
- How to Use Form Load and Button click Event in C#
- How to use Advanced Filter DataGridView in C#
- How to use TagListControl in C#
- How to use Error Provider in C#
Categories
Popular Posts
How to Download Chromedriver for Selenium
08/29/2024
C# Tutorial
07/20/2024
How to Download Microsoft SQL Server
06/22/2024
What is ARM architecture?
04/01/2024