G
Guest
I’m Working on a List Box that I would like to have 4 Columns with a Top row
as a header.
In Access VB I can use the following code to Display 4 rows
| Mo | Interest | Principal | Balance |
Me.lstResult.RowSource = "Mo;Interest;Principal;Balance"
lstResult.AddItem (MonthNumber & ";" & MonthlyInterest & ";" & PrincipalPaid
& ";" & RemainingBalance)
How can I do the same in VB? I tried
lstResult.Items.Add (MonthNumber & ";" & MonthlyInterest & ";" &
PrincipalPaid & ";" & RemainingBalance)
but I can’t get the columns.
thank You
Gus Chuchanis
as a header.
In Access VB I can use the following code to Display 4 rows
| Mo | Interest | Principal | Balance |
Me.lstResult.RowSource = "Mo;Interest;Principal;Balance"
lstResult.AddItem (MonthNumber & ";" & MonthlyInterest & ";" & PrincipalPaid
& ";" & RemainingBalance)
How can I do the same in VB? I tried
lstResult.Items.Add (MonthNumber & ";" & MonthlyInterest & ";" &
PrincipalPaid & ";" & RemainingBalance)
but I can’t get the columns.
thank You
Gus Chuchanis