Help me to format currency col(2) = 1.234.567
I have search any where can'not find answer
With Lv1
.Clear()
.View = View.Details
.FullRowSelect = True
.GridLines = True
.Columns.Add("Product Name", 250)
.Columns.Add("Stock", 90, HorizontalAlignment.Right)
.Columns.Add("Price", 90, HorizontalAlignment.Right)
'.SubItems(2) = Format(Value, "#,##0.00")
FillListView(Lv1, GetData(sSql))
End With
tx