Setting Table columns and rows with VB.NET

Setting Table columns and rows with VB.NET

Anonymous
Not applicable
644 Views
1 Reply
Message 1 of 2

Setting Table columns and rows with VB.NET

Anonymous
Not applicable

Hi,

 

I've used the attached code to set the number of colu9mns and rows in a table adn it works with all my tests.

 

However I also receive the warnings:

 

"Public overridable property NumRows() As Integer is obsolete.  Use 'Table.Rows.Count' instead"

 

and

 

"Public overridable property NumColumns() As Integer is obsolete.  Use 'Table.Columns.Count' instead"

                Dim tb As New Table()
                tb.NumRows = 6
                tb.NumColumns = 3

 Both the Rows and Column Count property are Read only.

 

What is going on here?

 

0 Likes
645 Views
1 Reply
Reply (1)
Message 2 of 2

jeff
Collaborator
Collaborator

Answer is in 3rd reply here

You can also find your answers @ TheSwamp
0 Likes