First of all sorry for my english

I put on the Form the WebTable1

To set the top of the table as follows:

Dim i As Integer
  
  WebTable1.Columns.Count = 2
  For I = 0 To WebTable1.Columns.Count - 1
    WebTable1.Columns [I] .Text = Chr $ (65 + I)
  Prev

So far there are two columns of the table head of the first column I Text of 
"A1" and
the second "A2"

To add rows to the table as follows:

  WebTable1.Count = 2

And the event "Data" of WebTable1 that:

Public Sub WebTable1_Data (Row As Integer, Column As Integer, Data As 
WebTableData)

  Data.Text = "This is the" & CStr (Row) & ":" & CStr (Column) & "cell"
  WebTable1.Rows [1] = 1
End

If I want to know the value of the second column in the title table I do this:

Print WebTable1.Columns [1] .Text

My question is how I can get the value of each column which is the second or 
third line,
etc.


------------------------------------------------------------------------------
Developer Access Program for Intel Xeon Phi Processors
Access to Intel Xeon Phi processor-based developer platforms.
With one year of Intel Parallel Studio XE.
Training and support from Colfax.
Order your platform today. http://sdm.link/xeonphi
_______________________________________________
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user

Reply via email to