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 TestEditText { public partial class frmMain : Form { public frmMain() { InitializeComponent(); } // ปุ่ม Open private void btOpen_Click(object sender, EventArgs e) { using (OpenFileDialog openFileDialog = new OpenFileDialog()) { openFileDialog.Title = "Select Text File"; openFileDialog.Multiselect = false; openFileDialog.Filter = "Text File (*txt)|*.txt"; if (openFileDialog.ShowDialog() == System.Windows.Forms.DialogResult.OK) { this.txtPath.Text = openFileDialog.FileName; this.btSave.Enabled = true; OpenTextFile(openFileDialog.FileName); } } } // ปุ่ม Save private void btSave_Click(object sender, EventArgs e) { SaveTextFile(this.txtPath.Text); MessageBox.Show("Save OK", this.Text, MessageBoxButtons.OK); } // ปุ่ม Close private void btClose_Click(object sender, EventArgs e) { this.Close(); } private void OpenTextFile(string path) { using (StreamReader sr = new StreamReader(path, Encoding.Default)) { this.txtEdit.Text = sr.ReadToEnd(); sr.Close(); } } private void SaveTextFile(string path) { using (StreamWriter sw = new StreamWriter(path, false, Encoding.Default)) { sw.Write(this.txtEdit.Text); sw.Close(); } } } }
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง