Hi,
without some code-tags around your actual and desired output, it is impossible to see any difference, let alone help you with this.
Some sample input would be helpful, too.
Regards,
svenXY | [reply] |
0x001cc48468c2-from @res1
0x001635749100-from @res1
0x000bcd1d4691-from @res1
0x00219bd81383-from @res2
0x000c29a59daa-from @res2
above five mac addresses are in my array(@res).now i want to display this array in text box.the problem is that when i use insert method it displayed in one line.but i want it one mac address per one line in text box.i think now u get it.
thanks bro.. | [reply] |
my @narray = join "\n", @res;
$tx->insert('end', "@narray\n");
| [reply] [d/l] |