|
Re: Visual Basic
are you compileing your variables before you try and sum them or is it an after affect
ie. function sample(x,y,z,p,d,q)
sum = x+Y+Z+P+D+Q
or
sum1 = x+y+z
sum2 = P+D+Q
Total = sum1 + sum2
i have found that doing inbetween steps like example 2 under each part of your program works better
|