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'的公共成員'作者'。未找到類型'clsBook'的公共成員'作者'。爲什麼?
這是我在課堂上使用的代碼...
Public Property AuthorID() As String
Get
Return bookAuthor
End Get
Set(ByVal value As String)
bookAuthor = value
End Set
End Property
的是,這是行不通的。 T.T
我不確定你希望我們如何告訴你爲什麼。研究你自己的代碼,看看'clsBook'是否真的沒有'Author'。 – BoltClock
該錯誤消息似乎很自我解釋:'找不到類型爲'clsBook'的公共成員'作者'。你對我們有什麼期望?重複編譯器已經給你的錯誤信息? –