Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations waross on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

a cancel/close commands to stop the running of the messagebox?

Status
Not open for further replies.

gilgalbiblewheel

Computer
Jun 6, 2006
5
CA
How can I put a cancel/close commands to stop the running of the messagebox? (the records are thousands of records long).
Code:
    While rs.EOF <> True
        MsgBox (rs("book_title") & " " & rs("chapter") & ":" & rs("verse") & " " & rs("text_data"))
        rs.MoveNext
        
    Wend

Or do you have a better suggestion? Instead of coding msgBox what way can I put a table of records?
 
Replies continue below

Recommended for you

Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top