跳到主内容

搜索

搜索

Sql Select - Vb Script - Syntax Validation

评论

1 条评论

  • Avatar
    Ian Cummings
    版主

    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

请先登录再写评论。