Viết chương trình cho phép mở 1 file word sau đó đổi màu, cỡ chữ của file word đó. CODE: Select All using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.IO;namespace WindowsFormsApplication2{ public partial class Form1 : Form { public Form1() { InitializeComponent(); } // chon mau private void button3_Click(object sender, EventArgs e) { colorDialog1.Color = richTextBox1.SelectionColor; if (colorDialog1.ShowDialog() == DialogResult.OK && richTextBox1.SelectionColor != colorDialog1.Color) { richTextBox1.SelectionColor = colorDialog1.Color; } } private void button1_Click(object sender, EventArgs e) { OpenFileDialog sr = new OpenFileDialog(); sr.Filter = "Text Files (.txt)|*.txt|Document (.doc)|*.doc|All File (*.*)|*.*"; if (sr.ShowDialog() == DialogResult.OK) { FileInfo fi = new FileInfo(sr.FileName); textBox1.Text = sr.FileName; this.richTextBox1.Text = fi.OpenText().ReadToEnd(); } } private void button5_Click(object sender, EventArgs e) { fontDialog1.Font = richTextBox1.SelectionFont; if (fontDialog1.ShowDialog() == DialogResult.OK && richTextBox1.SelectionFont != fontDialog1.Font) { richTextBox1.SelectionFont = fontDialog1.Font; } } private void thoat_Click(object sender, EventArgs e) { this.Close(); } }} Chú ý; Thêm cái này không thì ko chạy được. Hướng dẫn sử dụng file bài tập code tham khao.zip Các bạn tải về -> giải nén thư mục ra màn hình Mở visual studio -> Open -> Project/Solution.. -> thư mục giải nén -> chọn như hình dưới