Re: Array's
From: Cor (non_at_non.com)
Date: 02/01/04
- Next message: Shmuel (Seymour J.) Metz: "Re: The Suckkiness of CSS"
- Previous message: Cor: "Re: how to show a PopUp Form inside an MDI Container (not dialog)"
- In reply to: Varun: "Re: Array's"
- Next in thread: Varun: "Re: Array's"
- Reply: Varun: "Re: Array's"
- Messages sorted by: [ date ] [ thread ]
Date: Sun, 1 Feb 2004 16:31:29 +0100
Hi Varun,
Are you using VS.net or VB.net with an IDE?
If not add this instruction and look what is the result when you start.
(But look further I have also something else that is strange)
Before this line
messagebox.show(CarArray.count.tostring & "+" &
NoOfCarSalesArray.count.tostring)
> Dim max As Integer = CarArray.Count - 1
> Dim i As Integer
> For i = 0 To max
> CarDTRow = ds.Tables("CarDT").NewRow()
> CarDTRow ("CarReg") = txtCarReg.Text
> CarDTRow ("CarMake") = CarArray(i)
> CarDTRow("NoOfCarSales") = NoOfCarSalesArray(i)
> ds.Tables("CarDT").Rows.Add(CarDTRow)
> Next Index
Make from this
Next
There is not integer Index in the loop it is i but that is automaticly taken
in this case.
Cor
- Next message: Shmuel (Seymour J.) Metz: "Re: The Suckkiness of CSS"
- Previous message: Cor: "Re: how to show a PopUp Form inside an MDI Container (not dialog)"
- In reply to: Varun: "Re: Array's"
- Next in thread: Varun: "Re: Array's"
- Reply: Varun: "Re: Array's"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|