Does anyone know what's C++'s SETW() Equivalent in Visual Basic .NET ?
SETW: Sets the number of characters to be used as the field width for the next insertion operation.
Is there anythign similar in VB.NET.
Note: I want to use in a ListBox.
I've tried using:
Dim fmtStr As String = "{0, 15}{1, 10}{2, 8}"
lstOutput.Items.Add(String.Format(fmtStr, data0, data1, data2))
But it doesn't work as SETW.