EXCEL TOOLS
Excel Add-ins ที่พัฒนาโดยคุณสันติพงศ์ ณสุย (MVP Excel 2010-2020) ด้วยภาษา C# เพื่อแก้ไขปัญหาไฟล์ใหญ่ คำนวณนาน ทำงานช้า จัดการข้อมูลต่าง ๆ ที่ทำงานประจำวันได้อย่างสะดวกรวดเร็ว สนใจคลิกไปดูได้ที่นี่ครับ => Excel Tools
Excel Add-ins ที่พัฒนาโดยคุณสันติพงศ์ ณสุย (MVP Excel 2010-2020) ด้วยภาษา C# เพื่อแก้ไขปัญหาไฟล์ใหญ่ คำนวณนาน ทำงานช้า จัดการข้อมูลต่าง ๆ ที่ทำงานประจำวันได้อย่างสะดวกรวดเร็ว สนใจคลิกไปดูได้ที่นี่ครับ => Excel Tools
[code]
และปิดด้วย [/code]
ตัวอย่างเช่น [code]dim r as range[/code]
เพื่อให้แตกต่างจากข้อความทั่วไป สะดวกในการอ่านและทดสอบ (คลิกเพื่อดูตัวอย่างเพิ่มเติม)Code: Select all
Form1 frm = new Form1();
MessageBox.Show(frm.txtUser.Text);
Process.Start("cmd.exe");
await Task.Delay(500);
SendKeys.Send("cd " + frm.txtUser.Text + "{ENTER}");
await Task.Delay(500);
SendKeys.Send("Wolcmd.exe" + "{ENTER}");
await Task.Delay(500);
SendKeys.Send("wolcmd " + frm.txtMacAddress.Text + " " + frm.txtIPAddress.Text + " " + frm.txtSubnet.Text + "{ENTER}");
await Task.Delay(500);
Code: Select all
Public String ชื่อตัวแปร
Code: Select all
Form1.ชื่อตัวแปร
Code: Select all
public partial class Form1 : Form
{
public string test;
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
test = textBox1.Text;
Form2 frm2 = new Form2(test);
frm2.Show();
}
}
Code: Select all
public partial class Form2 : Form
{
public string test2;
public Form2(string test)
{
InitializeComponent();
test2 = test;
}
private void Form2_Load(object sender, EventArgs e)
{
Form1 frm1 = new Form1();
label1.Text = test2;
}
}