visual tutorial studio reports descargar crystal crystal-reports

crystal-reports - tutorial - crystal reports visual studio



En cristal informa cómo numerar filas por letras (1)

Me gustaría crear un sistema de numeración de tipo de esquema en mi informe de cristal con el siguiente formato:

  1. texto

    a. texto

    segundo. texto

  2. texto

    un texto

    b.text

    do. texto

etc. Puedo generar 1,2,3 donde estoy usando a, b c. ¿Hay una fórmula de cristal para convertir 1 a a, 2 a b, etc. o tengo que escribir uno?


Utilizaría la función de cristal chrw para convertir int a char y una tabla ascii. (sugerencia: a = 97)

chrw(96 + i) //where i is 1 based

o convierte "a" a unicode con ascw y cuenta hacia arriba ...

chrw(ascw("a") + (i-1)) //where i is 1 based