CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Page 2 of 2 FirstFirst 12
Results 16 to 21 of 21
  1. #16
    Join Date
    Dec 2002
    Location
    London, UK
    Posts
    1,569

    Re: edit textbox control array

    You need to address the sub items of the listitem... not the item itself. Make much sense?

    i.e.
    Code:
    Set itm = Listview1.ListItems.Item(1)
    itm.SubItems(1) = "little nick"
    Mike

  2. #17
    Join Date
    Nov 2005
    Posts
    11

    Re: edit textbox control array

    thanks pinky98..

  3. #18
    Join Date
    Nov 2005
    Posts
    11

    Re: edit textbox control array

    any ideas???

  4. #19
    Join Date
    Dec 2002
    Location
    London, UK
    Posts
    1,569

    Re: edit textbox control array

    What do you mean any ideas?
    Any ideas about what?
    Mike

  5. #20
    Join Date
    Nov 2005
    Posts
    11

    Re: edit textbox control array

    i got problem on the last code you provided, still it change everything. i just need to change one record at a time but it chages everything under that field name. can you help me out with this?? or any other ideas...

  6. #21
    Join Date
    Nov 2005
    Posts
    11

    Re: edit textbox control array

    helo guys....???!!!!?????!!!

Page 2 of 2 FirstFirst 12

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

Featured