Visual Basic .NET Help

Posted by Daniel on Stack Overflow See other posts from Stack Overflow or by Daniel
Published on 2010-04-14T02:49:28Z Indexed on 2010/04/14 2:53 UTC
Read the original article Hit count: 324

Filed under:
|
|

How can I get this code into a loop?

    contact.first_name = list.Item(0)
    contact.middle_name = list.Item(1)
    contact.last_name = list.Item(2)
    contact.age = list.Item(3)
    contact.mobile_phone = list.Item(4)
    contact.home_phone = list.Item(5)
    contact.work_phone = list.Item(6)
    contact.home_street = list.Item(7)
    contact.home_city = list.Item(8)
    contact.home_state = list.Item(9)
    contact.home_zip = list.Item(10)
    contact.work_street = list.Item(11)
    contact.work_city = list.Item(12)
    contact.work_state = list.Item(13)
    contact.work_zip = list.Item(14)

© Stack Overflow or respective owner

Related posts about vb.net

Related posts about vb