is it possible to display the two database column in one row column in listview in vb.net using mysql.data.mysqlclient?
Listview: where in database:
--------------- *Firstname: John
| Full Name | *Lastname: Smith
|_____________|
| |
| John Smith |
|_____________|
here's my code:
For i = 0 To table.Rows.Count - 1
With lvlistview
.Items.Add(table.Rows(i)("dte"))
With .Items(.Items.Count - 1).SubItems
.Add(table.Rows(i)("tran_no"))
.Add(table.Rows(i)("comp_type"))
.Add(table.Rows(i)("status"))
.Add(table.Rows(i)("sys_name"))
.Add(table.Rows(i)("mod_name"))
.Add(table.Rows(i)("err_desc"))
.Add(table.Rows(i)("trigg"))
.Add(table.Rows(i)("fname" . "lname")) **How i gonna combine this two database column in only one listview column**
End With
End With
Next