-1

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
4

1 に答える 1

0
  1. フルタイムの顧客のみを表示する方法を考え出します。
  2. パートタイムの顧客のみを表示する方法を考え出します。これは、ステップ 1 の後は簡単です。
  3. ラジオ ボタンが変更されたら、適切なデータを再読み込みします (手順 1 と 2 で行ったこと)。これは、checkedchanged イベントで処理できます。
于 2012-11-11T22:21:22.717 に答える