Submitted Questions

  • Sequence number generation

    How to generate sequence number through lotus script?

    Krishna

    • Jan 11th, 2012

    Sample code to print sequence numbers as follows....


    aList=100
    y = 0
    Forall v In aList
    array(y) = v
    Msgbox y
    y=y+1
    End Forall