วันศุกร์ที่ 2 กันยายน พ.ศ. 2554

แบบฝึกหัด

12.1

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;

namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void get_text_Click(object sender, EventArgs e)
        {
            MessageBox.Show(messageText.Text, "Output");
      
        }
    }
}



12.2


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;

namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void textBox2_TextChanged(object sender, EventArgs e)
        {

        }

        private void add_Click(object sender, EventArgs e)
        {
            Int32 A, B, X;
            A = Convert.ToInt32(input_A.Text);
            B = Convert.ToInt32(input_B.Text);
            X = A + B;
            output.Text = X.ToString();
        }
    }
}


12.3
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;

namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void show_Click(object sender, EventArgs e)
        {
            image.ImageLocation = "C:\\Documents and Settings\\Student\\Desktop\\picture\\016.jpg";
            image.Load();
        }

        private void delete_Click(object sender, EventArgs e)
        {
            image.Image = null;
        }
    }
}














วันศุกร์ที่ 8 กรกฎาคม พ.ศ. 2554

1.จงวิเคราะห์และออกแบบผังงานในการคำนวณค่าคอมมิชชั่นที่พนักงานจะได้รับในแต่ระเดือนโดยมีเงื่อนไขดังนี้
   -ถ้ายอดขายมากกว่า 25000 บาท ให้ค่าคอมมิชชั่น 5% ของยอดขาย
   -ถ้ายอดขายมากกว่า 2000 – 25000 บาท ให้ค่าคอมมิชชั่น 2% ของยอดขาย
   -ถ้ายอดขาย 2000 ให้ค่าคอมมิชชั่น 0% ของยอดขาย
ให้หาอะไรบ้าง
1. ผลลัพธ์ต้องการอะไร
2. ข้อมูลนำเข้า
3. การคำนวณ
4. ผังงาน
ผลลัพธ์ต้องการหาค่าคอมมิชชั่น
1.  รับค่าชื่อพนักงาน.ยอดขาย
2. เปรียบเทียบค่า ยอดขาย
- ถ้ายอดขายมากกว่า 25000 บาท ให้ค่าคอมมิชชั่น =ยอดขาย*(5/100)
- ถ้ายอดขายมากว่า 2000-25000 บาท ให้ค่าคอมมิชชั่น =ยอดขาย *(2/100)
- ถ้ายอดขายต่ำกว่า 2000 บาท ให้ค่าคอมมิชชั่น =ยอดขาย*(0*100)
3. แสดงผลลัพธ์
4. จบการทำงาน