[Gambas-user] Filling a WebTable (need help)

Bruce Steers bsteers4 at gmail.com
Thu Jul 21 12:10:48 CEST 2022


Can't get my head around a WebTable.
Don't get why there's plenty of Column related things but no Row related
things??
And how to initiate/fill it is really not clear.

Why oh why wasn't the api made to emulate GridView ?
never mind.

So if i have a GridView i would do this...
' set it up...
GridView1.Columns.Count = 2
GridView1.Column[0].Text = "Head 1"
GridView1.Column[2].Text = "Head 2"

' fill it..
GridView1.Rows.Count += 1
GridView1[0,0].Text = "1st field"
GridView1[0,1].Text = "2nd field"
GridView1.Rows.Count += 1
GridView1[1,0].Text = "1st field"
GridView1[1,1].Text = "2nd field"


Can somebody please show me how to do the same as that but for a WebTable
Many thanks
BruceS
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.gambas-basic.org/pipermail/user/attachments/20220721/0bb12e83/attachment.htm>


More information about the User mailing list