Results 1 to 2 of 2

Thread: Fillin array of textboxes using For to Next

  1. #1

    Thread Starter
    Fanatic Member kinjalgp's Avatar
    Join Date
    Apr 2000
    Location
    India
    Posts
    535
    How to fill array of textboxes with data from access database which has fields like 1,2,3,4,5,6, using FOR To Next statement.

  2. #2
    Fanatic Member
    Join Date
    Feb 2000
    Location
    Japan
    Posts
    840
    Code:
    ' do a count of textboxes if they are dynamic
    
    For TxtLoop = 0 to (No_Of_TXTBoxes - 1)
        TextBox(TxtLoop).Text = Str(TxtLoop + 1)
    Next

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width