ข้ามไปที่เนื้อหาหลัก

บทความ

กำลังแสดงโพสต์จาก กรกฎาคม, 2012

Code c# ปิด Form login หรือ ปิดทั้งหมดของ Application ที่เราสร้างขี้น

ทดสอบใน c#  VS 2010   ก่อนอื่นจะอธิบายถึง Events การที่เราปิด  1 Form จะเกิดเหตุการณได้ 2 เหตุการคือ   FormClosing กับ FormClosed ครับ FormClosing จะเกิดก่อนที่จะทำการปิด form FormClosed  จะเกิดหลังการปิด form ไปแล้ว และถ้าเราต้องการเช็คตรง ปุ่ม Close windows เเล้วทำให้โปรแกรมทั้งจบการทำงาน จะมีการเขียนดังนี้   ใช้ Application.Exit();  ใน Events  FormClosed  private void s_adminmain_FormClosed(object sender, FormClosedEventArgs e)         {             Application.Exit();         }

KeyDown Event in C# .NET

private void textBox1_KeyDown(object sender, KeyEventArgs e) { if (e. KeyCode == Keys.Enter) { // ใส่คำสั่งที่ต้องการให้ทำงาน } }

select ข้อมูลโดยการ join table 2 table + linq

  var sd = from d in db.ชื่อตาราง 1                      where  //เงื่อนไข                      join m in db.ชื่อตาราง 2                      on d.ชื่อฟิลด์ equals m.ชื่อฟิลด์                      select new                      {                           //สิ่งที่ต้องการ                      };

สร้างเฟรมและปุ่มใน java oop

import java.awt.Color; import javax.swing.JButton; import javax.swing.JFrame; public class myFrame_button1 extends JFrame{ /** * @param args */ JButton b;//oject button myFrame_button1(){ initButtom(); initFrame(); } void initFrame(){ setLayout(null); setSize(500,500); setLocation(40,40); setVisible(true); setTitle("test2"); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); } void initButtom(){ b = new JButton(); b.setLayout(null); b.setBackground(Color.GREEN); b.setBounds(40,40,100,50); b.setText("Hello"); b.setFocusable(false); add(b); } public static void main(String[] args) { // TODO Auto-generated method stub new myFrame_button1(); } }

การเรียกใช้งาน Connection String จาก config file

การเรียกใช้ฐานข้อมูล โดยการอ่าน  Connection String จาก config file  ฟังก์ชันเกี่ยวกับ การเชื่อมโยงฐานข้อมูล เริ่มด้วย Config File  <?xml version="1.0"?> <configuration>     <configSections>     </configSections>     <connectionStrings>         <add name="ConnectionStringName" connectionString="Data Source=TAWANGTAN-PC;Initial Catalog=scbank;Persist Security Info=True;User ID=scbUser;Password=123456" providerName="System.Data.SqlClient"/>     </connectionStrings>   <startup useLegacyV2RuntimeActivationPolicy="true">        <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup> </configuration> ตัวอย่างโค้ดการเขียน การเชื่อมต่อ มีดังนี้ครับ using System.Configuration; // อ่านค่าจากคอนฟิกไฟล์ string conn = ConfigurationManager.AppSettings["ConnectionStringName"]; //Windows App