G
Guest
I have a Net 2.0 app in VB that has code like this:
Dim intA as Integer
Dim intB as Integer
dim myList as new List(Of String)
intA = 10
intB = 20
.... code to fill the list ....
intA = intA + 1
intB = intB + 1
Then I insert into a list of type String, like so:
myList.Insert("the value being inserted here is " & intA, intB)
On XP Pro/Home, the list inserts using intA = 11 and intB = 21.
But on Vista, my beta users report that the Insert is using the previous
values 10 and 20 respectively. I am unable to recreate this problem myself
on Vista.
Does anyone have insight as to why this is happening? Thank you in advance.
Dim intA as Integer
Dim intB as Integer
dim myList as new List(Of String)
intA = 10
intB = 20
.... code to fill the list ....
intA = intA + 1
intB = intB + 1
Then I insert into a list of type String, like so:
myList.Insert("the value being inserted here is " & intA, intB)
On XP Pro/Home, the list inserts using intA = 11 and intB = 21.
But on Vista, my beta users report that the Insert is using the previous
values 10 and 20 respectively. I am unable to recreate this problem myself
on Vista.
Does anyone have insight as to why this is happening? Thank you in advance.