rows count is not a member of integer
问题 I'm trying to create an DataGridView on visual basic, however I'm having a problem with this RowsCount . This code is underlined blue: SQL.SQLDA.Fill(SQL.SQLDS, "GettingInfo").RowsCount It says RowsCount is not a member of integer. This is all of the code for the process: Public Sub LoadBookingData() Dim loadSQL As String = "SELECT * FROM booking" Dim RowsCount As Integer If SQL.SQLCon.State = ConnectionState.Closed Then SQL.SQLCon.open() SQL.SQLDA.Fill(SQL.SQLDS, "GettingInfo"). RowsCount =