[Gambas-user] How to get started with WebView

Rolf-Werner Eilert rwe-sse at ...3629...
Wed Jan 25 17:23:08 CET 2017


Am 25.01.2017 16:24, schrieb Benoît Minisini:
> Le 25/01/2017 à 16:19, Rolf-Werner Eilert a écrit :
>>
>> Thank you very much, that makes it much clearer. Now I have a Button1
>> and a WebTable1
>>
>> Public Sub WebButton1_Click()
>>
>>     WebLabel1.Text = "Button geklickt"
>>
>>     WebTable1.AddColumn("Spalte 1")
>>     WebTable1.AddColumn("Spalte 2")
>>     WebTable1.Count = 5
>>
>> End
>>
>>
>> Public Sub WebTable1_Data(Row As Integer, Column As Integer, Data As
>> WebTableData)
>>
>>     Data = CStr(Row) & "-" & CStr(Column)
>>
>> End
>>
>> But it says "circular reference detected", and nothing appears in the
>> tableview. What is wrong?
>>
>> Rolf
>>
>
> No idea, send your project!
>

Ah! Now it says "Type mismatch: Wanted WebTableData, got String instead"

So, what is WebTableData?

Rolf




More information about the User mailing list