GDI usage [FIXED 0.9.25W4?]
[quote=Pierre_Admin]
Regarding the GDI issue, how many grids do you have opened ? The Icons folder contains how many icon files ?
- Read more about GDI usage [FIXED 0.9.25W4?]
- 5 comments
- Log in or register to post comments
Function mySum(IncludeIt, x) ' Calculates the sum of the array x if IncludeIt is true
dim d, i
d=ubound(x)
for i=0 to d
if IncludeIt(i)=true then mySum = mySum+NZ(x(i))
next
end Function