Hi all
Im trying to parse the entire table by concatenating with the "\r\n" delimiter and then showing to screen with the dialog.message action, but when I do this I get no error only a blank result (no data is shown to user), what or why I cant get the data from table to be shown to user?
Code I used:
Im trying to parse the entire table by concatenating with the "\r\n" delimiter and then showing to screen with the dialog.message action, but when I do this I get no error only a blank result (no data is shown to user), what or why I cant get the data from table to be shown to user?
Code I used:
PHP Code:
tblMyData={}
tblMyData[1] = {number="1", name="John", surname="nolte"}
tblMyData[2] = {number="2", name="Mike", surname="smith"}
tblMyData[3] = {number="3", name="Louise", surname="Brandon"}
tablero = Table.Concat(tblMyData, "\r\n", 1, TABLE_ALL);
Dialog.TimedMessage("hey", tablero, 2000, MB_ICONINFORMATION);
Comment