[VBA][求助]如果做交叉递增的圆点?
我现在参照老大们的意思画出了递增的圆点, 我原来的代码做出来的效果如下http://bbs.mjtd.com/forum.php?mod=attachment&aid=NzQyM3wxOTliOWFiM3wxNjU5MTc1MjM5fDczMjY5MTh8MjA2NTA%3D&noupdate=yes¬humb=yes
我希望能在画红处做出圆点 为什么没人帮我呀? ' 记录行
Dim Row As Integer
Row = 1
Do
Do
Loop While centerpt(0) <= Length
' 增加一行
Row = Row + 1
' 偶数行
If Row Mod 2 = 0 Then
centerpt(0) = centerpt(1) + ptdis
' 奇数行
Else
centerpt(0) = 0
End If
Loop While centerpt(1) <= (n * p - 1) * ptdis + ptdis / 4
增加一个判断当前行的变量。
谢谢尹凡! 参照您的建议我做
页:
[1]