Hi
Can anyone explain the difference between using and object or number type for enumerating through lists. When should I use Object and when a number type.
Thankyou
Rob
Can anyone explain the difference between using and object or number type for enumerating through lists. When should I use Object and when a number type.
Difference between Object and Double:
For Each item() As Object In bList
Dim pt As Int
Dim delta As Double
Dim xValue As Double
For Each item() As Double In bList
Dim pt As Int
Dim delta As Double
Dim xValue As Double
Thankyou
Rob