This could be done easily using a custom function, like this:
Also, the documentation may help further.
Ulrich
Code:
function Table.ToString(tTable) local sOutput = ""; for i, v in pairs(tTable) do sOutput = sOutput .. i .. " : " .. v .. "\r\n"; end return sOutput; end Dialog.Message("", Table.ToString(System.GetLANInfo()));
Ulrich
Comment