跳至主內容

搜尋

搜尋

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

登入寫評論。