E
Eric de Leeuw
Hello,
in my project I have a couple of strings that function as a counter. The
count the number of loops that have been made
Now I want to make a total counter that adds the values of the seperate
counters
eg.
Dim strCounter1 as String 'eg value = 5
Dim strCounter2 as String 'eg value = 5
Dim strCounterTotal as String 'I want this counter to show 10
strCounterTotal = strCounter1 + strCounter2
The last line now returns 55 instead of 10
How do I do this trick
Thanx in advance
in my project I have a couple of strings that function as a counter. The
count the number of loops that have been made
Now I want to make a total counter that adds the values of the seperate
counters
eg.
Dim strCounter1 as String 'eg value = 5
Dim strCounter2 as String 'eg value = 5
Dim strCounterTotal as String 'I want this counter to show 10
strCounterTotal = strCounter1 + strCounter2
The last line now returns 55 instead of 10
How do I do this trick
Thanx in advance