How can we transfer the value of a textboxes into the header of a dvgcheckboxes?

喜夏-厌秋 提交于 2019-12-26 07:43:20

问题


We wanted to let the user to input a value which is the date when the instructor/user check his/her class attendance and then once the button is clicked the value inputted in the textbox will be transfer in the header of a dgvcheckbox. So please help us solve this problem . . we've been trying to solved this but unfortunately we can't. So I hope that you could all help us!


回答1:


Try this...

Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    DataGridView1.ColumnCount = 5
End Sub
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
    DataGridView1.Columns(0).Name = TextBox1.Text
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    DataGridView1.Columns(1).Name = DateTimePicker1.Value.Date
End Sub

End Class




回答2:


Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
DataGridView1.ColumnCount = 5
End Sub
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)     Handles Button2.Click
'----------------Clear Recent Data on DataGridView-------------------
Try
    DataGridView1.Rows.Clear()
    DataGridView1.Columns.Clear()
Catch ex As Exception
End Try
Try
DataGridView1.DataSource = Nothing
Catch ex As Exception
End Try
'----------------Display Again Record In DataGridView-----------------------
clsTR.displayTestResults(DataGridView1, "SELECT STUDENT_NAME AS [Student Name],MONDAY AS TextBox1.Text WHERE Something something")
End Sub
End Class

WHERE STUDENT_NAME and MONDAY is the name of the database Column using "AS" will replace the database column STUDENT_NAME AS [Student Name]



来源:https://stackoverflow.com/questions/23773304/how-can-we-transfer-the-value-of-a-textboxes-into-the-header-of-a-dvgcheckboxes

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!