Results 1 to 3 of 3

Thread: Data View

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Sep 2002
    Location
    Pilipinas
    Posts
    441

    Data View

    (moved)
    Last edited by martialdc; Jun 3rd, 2007 at 09:08 PM.

  2. #2
    Sleep mode
    Join Date
    Aug 2002
    Location
    RUH
    Posts
    8,083

    Re: Data View

    Originally posted by Bluei2
    And my second question is, how can I go to Next or Previous record?
    See here : http://www.vbforums.com/showthread.p...hreadid=244549

  3. #3
    Lively Member
    Join Date
    Sep 2002
    Posts
    90
    Instead of

    VB Code:
    1. 'to combo
    2.         Dim a As Integer
    3.         For a = 1 To dv.Count
    4.             ComboBox1.Items.Add(dv.Item(0))
    5.         Next

    You should have

    VB Code:
    1. 'to combo
    2.         ComboBox1.DataSource = dv
    3.         ComboBox1.DisplayMember = "students"

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