关于PRINT的问题
怎么在在窗体上打印1*1=1
1*2=2 2*2=4
1*3=3 2*3=6 3*3=9
2007-04-06 10:04
dim i%,j%
for i=1 to 9
for j=1 to i
debug.print j & "*" & i & "=" & j*i & ; tab(4);
next
debug.print
next
2007-04-06 12:21
2007-04-06 12:22
2007-04-06 19:24

2007-04-06 19:47