วันเสาร์ที่ 10 กันยายน พ.ศ. 2554

week10

อนุทินครั้งที่ 10
องความรู้ที่ได้รับ
ได้รู้การทำปฎิทิน แสดงการเลือกวันที่

ความรู้สึกต่อการเรียนในวันนี้
ไม่เข้าใจในบางส่วนของโปรแกรม

ส่งการบ้านครั้งที่ 8

โปรแกรมที่ 12.4

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 display_TextChanged(object sender, EventArgs e)
        {

        }

        private void list1_SelectedIndexChanged(object sender, EventArgs e)
        {
            int index = list1.SelectedIndex;
            display.Text = list1.Items[index].ToString();
        }

        private void list2_SelectedIndexChanged(object sender, EventArgs e)
        {
            int index = list2.SelectedIndex;
            display.Text = list2.Items[index].ToString();
        }

        private void Form1_Load(object sender, EventArgs e)
        {

        }
    }
}

โปรแกรมที่ 12.5

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 listBox1_SelectedIndexChanged(object sender, EventArgs e)
        {

        }

        private void add_Click(object sender, EventArgs e)
        {
            string str = text.Text;     //อ่านข้อมูลจากเท็กซ์บอกซ์มาใส่ตัวแปร str
            listBox1.Items.Add(str);     //ใช้เมธอด Add เพิ่มข้อมูลเข้าไปในไอเท็ม
        }

        private void text_TextChanged(object sender, EventArgs e)
        {

        }

        private void label1_Click(object sender, EventArgs e)
        {

        }
    }
}

โปรแกรมที่ 12.6
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 delete_Click(object sender, EventArgs e)
        {
            int index = listBox1.SelectedIndex;     //อ่านค่าอินเด็กซ์ของไอเท็มที่เลือก
            listBox1.Items.RemoveAt(index);          //ลบข้อมูลในตำแหน่งที่เลือก
        }

        private void clear_Click(object sender, EventArgs e)
        {
            listBox1.Items.Clear();       //เคลียร์ค่าไอเท็มในลิสต์บ็อกซ์  
        }

        private void button2_Click(object sender, EventArgs e)
        {
            MessageBox.Show("The number of items in the list is " +
                listBox1.Items.Count.ToString());
        }

        private void button1_Click(object sender, EventArgs e)
        {
            string str = textBox1.Text;     //อ่านข้อมูลจากเท็กซ์บ็อกซ์
            listBox1.Items.Add(str);        //เมธอด Add() เพิ่มข้อมูลเข้าไปในไอเท็ม
        }
    }
}




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

week9

อนุทินครั้งที่ 9
องค์ความรู้ที่ได้รับ
องค์ความรู้ที่ได้รับ คือ ได้รู้การเขียนโปรแกรมปุ่มคลิกแล้วแสดงรูปภาพ

ประโยชน์ที่ได้รับในวันนี้
ได้รู้หลักวิธีการเขียนโปรแกรมแสดงรู้ภาพ และวิธีข้อมูลใรการ
ทำรายงาน

แบบฝึกหัด

โปรแกรมที่ 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 Form1_Load(object sender, EventArgs e)
        {

        }

        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 textBox1_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 = "D:\\5421414016_กฤตขจร\\pic1.jpg";
            image.Load();     //โหลดภาพขึ้นมาแสดงผล
        }

        private void delete_Click(object sender, EventArgs e)
        {
            image.Image = null;  //กำหนดคุณสมบัติโดยให้ค่า Image เป็น null
        }
    }
}

วันศุกร์ที่ 26 สิงหาคม พ.ศ. 2554

week 8

อนุทินครั้งที่ 8
องค์ความรู้ที่ได้รับ คือได้รู้เกี่ยวกับการใช้ window From และการสร้าง Text , labal , button
และการใช้งานเครื่องมือต่าง ๆ

ความรู้สึกต่อการเรียนในวันนี้
ความรู้สึกต่อการเรียนในวันนี้ คือ ดีได้รู้หลักการ window from และการใช้งานต่าง ๆ ในโปรแกรม

วันศุกร์ที่ 5 สิงหาคม พ.ศ. 2554

week7

อนุทินครั้งที่ 7
องค์ความรู้ที่ได้รับ
ค่าการเขียนโปรแกรมการประกาศค่าตัวแปร
และการเปรียบเทียบตัวแปรที่เป็นตัวเลข

ความรู้สึกต่อการเรียนในวันนี้
คาวรู้สึกต่อการเรียนในวันนี้ดีที่ได้รู้ค่าการเขียนโปรแกรมการประกาศค่าตัวแปร
และการเปรียบเทียบตัวแปรที่เป็นตัวเลข

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

week6

อนุทินครั้งที่ 6
องค์ความรู้ที่ได้รับ
รู้ค่า สัญลักษ์ที่ใช้ใน โปรแกรม C# ว่ามีตัวไหนบ้างใช้อย่างไร

ความรู้สึกต่อการเรียนในวันนี้
ได้รู้ค่า และสัญลักษณ์ ที่สามารถนำมาใช้ในโปรแกรมและการเขียน โปรแกรม C# ว่ามีตัวไหนบ้างอย่างไรบ้าง

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

week5

อนุทินครั้งที่ 6
องค์ความรู้ที่ได้รับ
การนำวิดีโอ จาก เว็บYoutube มาลงในบล็อก และการใช้โปรแกรม C#

ความรู้สึกต่อการเรียนในวันนี้
ดีที่ได้รู้จักวิธีการนำวีดีโอมาลงในบล็อกไว้สำหรับดูวีดีโอและการทำโปรแกรม C# ในการทำงาน

week4

อนุทินครั้งที่ 4
 องค์ความรู้ที่ได้รับ
ได้รู้การทำ FlowChart และ การทำงาน ของ Flow Chart
และการทำ Blogger

ความรู้สึกต่อการเรียนในวันนี้
ความรู้สึกต่อการเรียนในวันนี้คือดีที่ได้รู้วิธีการทำ Flow Chart
และการทำ Blogger

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

Flow chat

จงวิเคราะห์และออกแบบผังงานในการคำนวณค่าคอมมิชชั่นที่พนักงานจะได้รับในแต่ละเดือนโดยมีเงื่อนไขดังนี้
-ถ้ายอดขายมากกว่า 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.       จบการทำงาน

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

ส่งการบ้านครั้งที่1

1.  110011
= (1*2^5)+(1*2^4)+(0*2^3)+(0*2^2)+(1*2^1)+(1*2^0)
= 32+16+0+0+2+1
= 51

2.  100101
= (1*2^5)+(0*2^4)+(0*2^3)+(1*2^2)+(0*2^1)+(1*2^0)
= 32+0+0+4+0+1
= 37

3.  111010
= (1*2^5)+(1*2^4)+(1*2^3)+(0*2^2)+(1*2^1)+(0*2^0)
= 32+16+8+0+2+0
= 58

4. 101100
= (1*2^5)+(0*2^4)+(1*2^3)+(1*2^2)+(0*2^1)+(0*2^0)
= 32+0+8+4+0+0
= 44

5.  1111011
= (1*2^6)+(1*2^5)+(1*2^4)+(1*2^3)+(0*2^2)+(1*2^1)+(1*2^0)
= 64+32+16+8+0+2+1
= 123

week3

อนุทิน
องค์ความรู้ที่ได้รับ
องค์ความรู้ที่ได้รับคือวิธีการสมัคร gmail และ Blog ได้รู้วิธีการตกแต่ง Blog เพิ่มข้อมูล
ปรับแต่งพื้นหลัง บันทึกข้อมูล

ความรู้สึกต่อการเรียนในวันนี้
ความรู้สึกต่อการเรียนในวันนี้คือรู้สึกดีที่ได้รู้จัก gmail และ blog รุ้ถึงวิธีการสมัคร และการโพสข้อความ การปรับแต่ง เพื่อใช้ในการส่งการบ้าน และพูดคุยกันระหว่างเพื่อน