xxxxxx

xxxxxx

Parents
No Data
Reply
  • could try this one. Just edit the numbers in the code to match your needs

    Sub numberGen()
    Dim s As Shape
    Dim n&, i&, dSpace#, dVal#
    Dim iFirst&, iLast&

    ActiveDocument.Unit = cdrInch
    dVal = 0
    dSpace = 0.5
    iFirst = 100
    iLast = 1

    For i = iLast To iFirst
    Set s = ActiveLayer.CreateArtisticText(0, dVal, i)
    dVal = dVal - dSpace
    Next i
    End Sub

Children