Private Sub ShowCurrentRecord()
txtBookID.Text = books(index).BookID
txtAuthor.Text = books(index).Author
txtTitle.Text = books(index).Title
txtPurchasePrice.Text = books(index).PurchasePrice
txtSalePrice.Text = books(index).SalePrice
txtInventory.Text = books(index).Inventory
Открытый член 'Автор' для типа 'clsBook' не найден.
это код, который я использовал в классе ...
Public Property AuthorID() As String
Get
Return bookAuthor
End Get
Set(ByVal value As String)
bookAuthor = value
End Set
End Property
все же, это не работает. T.T