PartTimeRadioButton と FullTimeRadioButton の 2 つのラジオ ボタンを使用して、datagridview に適切な情報を表示する必要があります。誰かがラジオ ボタンを選択すると、フルタイムの人のみ、またはパートタイムの人のみが表示されます。これを開始する方法さえわかりません。私はそれらすべてを表示する方法を知っています:
SalesDataGridView.DataSource = aCustomers.Items
aCustomers は Customers クラスから取得されますが、その形式で aCustomers に名前が変更されました。このプロジェクトのデザインのスクリーンショットを添付しました。また、これを午後 11 時 59 分までに行う必要があり、その方法がわかりません。
顧客クラス コードは次のとおりです。
Public Class Customers
'create a object variable (tableadapter)
'this will be used to creat instances of this class in the form
Private adapter As New CompanyDataSetTableAdapters.SalesStaffTableAdapter
'property to return a table using the GetData method
Public ReadOnly Property Items() As DataTable
Get
Dim table As DataTable = adapter.GetData
table.DefaultView.Sort = "First_Name"
Return table
End Get
End Property
'create a function to filter the customers by custid
Public Function GetByCustomerId(custid As Short) As DataTable
Dim table As DataTable = adapter.GetData 'entire table
'filter to get desired row(s)
table.DefaultView.RowFilter = " ID = " & custid
Return table
End Function
End Class
datagridview とラジオ ボタンのコードを含む [ウィンドウの表示] フォームは次のとおりです。
' For the datagridview, display only first name, last name, fulltime, hiredate and salary
' If you do not want to display the column, use the visible property.
' For example, SalesDataGridView.Columns(0).Visible = false
' To accumulate the total salary, you can use the cells in the datagridview
' For example, id is in cells(0).
Public Class frmDisplay
Private aCustomers As New Customers
Private formLoading As Boolean = True
Private Sub radFT_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs)
End Sub
Private Sub radPT_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs)
SalesDataGridView.DataSource = aCustomers.Items
End Sub
End Class