Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,037

HOME > .NET Framework > Forum > เขียนโปรแกรมเพื่อแสดงชื่อ button ที่เราคลิก(ซึ่ง button เกิดขึ้นจากการเขียนโปรแกรมสร้างขึ้นมา)



 

เขียนโปรแกรมเพื่อแสดงชื่อ button ที่เราคลิก(ซึ่ง button เกิดขึ้นจากการเขียนโปรแกรมสร้างขึ้นมา)

 



Topic : 053077

Guest




คือเขียนโปรแกรมดึงชื่อโต๊ะจากดาต้าเบสว่ามีเท่าไรก็สร้าง button ตามจำนวนโต๊ะที่มี ตามดค้ดนี้ค่ะ
Code (VB.NET)
Private Sub FrmOrder_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

        SqlCmd = "select id,status from tabless"
        dsTempCls()
        DTset = WebDB.SQLRead(SqlCmd)
        Application.DoEvents()

        Dim intLoop As Integer

        ' Off sets
        Dim y As Integer = 5
        Dim x As Integer = 0

        ' Loop through buttons
        For intLoop = 0 To DTset.Tables(0).Rows.Count - 1
            dsTempCls()
            dsTemp = WebDB.SQLRead(SqlCmd)
            Application.DoEvents()

            ' Create button and set its width
            Dim newbutton As New Button
            newbutton.Width = 60
            newbutton.Height = 40

            ' If we have hit 4 buttons, adjust the y value by adding 10 onto the controls height
            ' Reset x back to 0
            If intLoop Mod 3 = 0 Then
                ' This gives us a 10 pixel buffer below each row of buttons
                y += newbutton.Height + 10
                x = 0
            End If

            ' Set the text and set its top and left based on its dimensions and count
            newbutton.Text = dsTemp.Tables(0).Rows(intLoop).Item("id")
            newbutton.Name = dsTemp.Tables(0).Rows(intLoop).Item("id")
            newbutton.Top = y

            ' This gives us a 5 pixel right buffer between buttons
            newbutton.Left = 26 + (x * (newbutton.Width + 5))
            x += 1
            Me.Controls.Add(newbutton)
        Next
    End Sub


แล้วทีนี้จะเช็คว่าถ้ามีการกด button ใดๆ ให้โชว์ msgbox ของโต๊ะนั้นๆ จะเขียนยังไงค่ะ



Tag : .NET, VB.NET







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2010-12-13 16:07:03 By : ปอ View : 1103 Reply : 11
 

 

No. 1



โพสกระทู้ ( 119 )
บทความ ( 0 )



สถานะออฟไลน์


จัดให้

Code (VB.NET)
Private Sub FrmOrder_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

        SqlCmd = "select id,status from tabless"
        dsTempCls()
        DTset = WebDB.SQLRead(SqlCmd)
        Application.DoEvents()

        Dim intLoop As Integer

        ' Off sets
        Dim y As Integer = 5
        Dim x As Integer = 0

        ' Loop through buttons
        For intLoop = 0 To DTset.Tables(0).Rows.Count - 1
            dsTempCls()
            dsTemp = WebDB.SQLRead(SqlCmd)
            Application.DoEvents()

            ' Create button and set its width
            Dim newbutton As New Button
            newbutton.Width = 60
            newbutton.Height = 40

            ' If we have hit 4 buttons, adjust the y value by adding 10 onto the controls height
            ' Reset x back to 0
            If intLoop Mod 3 = 0 Then
                ' This gives us a 10 pixel buffer below each row of buttons
                y += newbutton.Height + 10
                x = 0
            End If

            ' Set the text and set its top and left based on its dimensions and count
            newbutton.Text = dsTemp.Tables(0).Rows(intLoop).Item("id")
            newbutton.Name = dsTemp.Tables(0).Rows(intLoop).Item("id")
            newbutton.Top = y

            ' This gives us a 5 pixel right buffer between buttons
            newbutton.Left = 26 + (x * (newbutton.Width + 5))
            x += 1


             AddHandler newbutton.Click, AddressOf ButtonClick


            Me.Controls.Add(newbutton)
        Next
    End Sub

   



    Private Sub ButtonClick(ByVal sender As System.Object, ByVal e As System.EventArgs)

         MessageBox.show(sender.Name)

'sender คือ Button ที่ส่ง Event ออกมา
'sender เป็น Object จะไม่มีตัวช่วย ถ้าใช้บ่อยในโพรเซส ให้เอา Control เฉพาะมารับก่อน

        Dim myButton As Button = sender

    End Sub




ใกล้ปีใหม่แล้ว ขอให้มีความสุขกับการเขียนโปรแกรม








ประวัติการแก้ไข
2010-12-13 16:24:39
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-12-13 16:19:55 By : base3000
 


 

No. 2

Guest


ค่ะขอบคุณมากนะค่ะ
ขอให้มีความสุขมากๆเช่นกันค่ะ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-12-13 16:27:10 By : ปอ
 

 

No. 3

Guest


ลองทำแล้วมันไม่ได้อะค่ะ ไม่มีอะไรเกิดขึ้นเลย
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-12-13 16:41:55 By : ปอ
 


 

No. 4



โพสกระทู้ ( 119 )
บทความ ( 0 )



สถานะออฟไลน์


error
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-12-13 17:09:04 By : base3000
 


 

No. 5



โพสกระทู้ ( 1,348 )
บทความ ( 1 )



สถานะออฟไลน์


ตอบความคิดเห็นที่ : 4 เขียนโดย : base3000 เมื่อวันที่ 2010-12-13 17:09:04
รายละเอียดของการตอบ ::
พี่ tong ใช้โปรแกรมอะไร ลากลูกศรสีแดงครับ

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-12-13 17:19:57 By : หางอึ่ง
 


 

No. 6



โพสกระทู้ ( 119 )
บทความ ( 0 )



สถานะออฟไลน์


ใช้ Snagit 10 ครับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-12-13 17:37:28 By : base3000
 


 

No. 7

Guest


อ้อโทษทีนะค่ะยังไม่ใส่

หลังจากที่ใส่แล้วได้ค่ะแต่

er

ตรง serder.name ใส่ไม่ได้ พอลองเขียนเป็น serder.tostring และอื่นๆที่ในโปรแกรมมีให้ ปรากฏว่า มันไม่แสดงชื่อโต๊ะค่ะ แต่มันแสดงเป็น system.windowfrom.button ซึ่งจุดประสงค์จริงๆคืออยากได้ชื่อโต๊ะอะค่ะ


***ลืมบอกไปว่าเขียนใน pocket pc 2003 ค่ะ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-12-13 17:46:03 By : ปอ
 


 

No. 8



โพสกระทู้ ( 119 )
บทความ ( 0 )



สถานะออฟไลน์


คงต้องหาคนอื่นช่วยละครับ ไม่ถนัด
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-12-13 17:54:28 By : base3000
 


 

No. 9

Guest


ค่ะไม่เป็นไรค่ะ ขอบคุณ คุณtong มากนะค่ะ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-12-13 18:01:36 By : ปอ
 


 

No. 10



โพสกระทู้ ( 162 )
บทความ ( 0 )



สถานะออฟไลน์


C# เขาเขียนอย่างนี้ครับ

Code (C#)
private void ButtonClick(System.Object sender, EventArgs e)
{
    Control ctrl = (Control)sender;
//หรือ Buton btn =(Buton)sender;
    MessageBox.Show("You clicked: " + ctrl.Name);
}





ประวัติการแก้ไข
2010-12-14 14:32:11
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-12-14 13:58:20 By : superpheak
 


 

No. 11

Guest


ค่ะได้แล้วค่ะขอบคุณมากนะค่ะ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-12-14 14:34:19 By : ปอ
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : เขียนโปรแกรมเพื่อแสดงชื่อ button ที่เราคลิก(ซึ่ง button เกิดขึ้นจากการเขียนโปรแกรมสร้างขึ้นมา)
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 00
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่