Saltar al contenido principal

Búsqueda

Búsqueda

Sql Select - Vb Script - Syntax Validation

Comentarios

1 comentario

  • Avatar
    Ian Cummings
    Moderador

    In our example for the OnFillList, the Do...Loop has something like the below:

    strNames = ""
    rs.MoveFirst()
    do while NOT rs.EOF
        strNames = strNames + rs.fields("FieldName") + vbCrLf
        rs.MoveNext()
    loop
    
    

    I suspect that what you have here in your code might be the root of the problem.

    0

Iniciar sesión para dejar un comentario.