Quote:
quote:Originally posted by atilak_2001
I recommend you to use list view instead of listbox. You can use multiple columns of list view.
Tell me more about your data and the method of fatching the data.
Positiveness is in my blood.. I'm O+.
|
Thank you so much 0+
But I had solved the problem by this method
Private Function writeouttext3(ByVal a1 As String, ByVal a2 As String, ByVal a3 As String) As String
Dim r As String ' Declaraction for line spacing
r = Microsoft.VisualBasic.Right(Space(50) + a1, 10)
r = r + Microsoft.VisualBasic.Right(Space(50) + a2, 20)
r = r + Microsoft.VisualBasic.Right(Space(50) + a3, 24)
Return (r)
End Function
lstBoxsg.Items.Add(writeouttext3(Num1,Num2 , Num3))
It workout great!