I never used Data Control but try next
Another is to display the numbers in 4 text boxes that are linked (bound controls) with the table fields (yes those fields that David say are evil and I agree)Code:For a = 1 to 97 For b = a + 1 to 98 For c = b + 1 to 99 For d = c + 1 to 100 numbs.recordset.addnew numbs.recordset!Num1 = a numbs.recordset!Num2 = b numbs.recordset!Num3 = c numbs.recordset!Num4 = d numbs.recordset.update Next d Next c Next b Next a




Reply With Quote
