DickEM 0 Newbie Poster

I've fought the Error 91 problem for years programing (self taught) in VB 6. Below is a simple example of a program getting data from a database and putting it into a grid. I know I'm supposed to use Dim and Set statements, but I've never figured it out. Can you help me??

Private Sub FormLoad()

    Data1.Recordset.MoveFirst
    R = 1: grdData.Col = 0

    Do Until Data1.Recordset.EOF = True
       grdData.Row = R
       grdData.Text = Data1.Recordset.Fields("Name")
       R = R + 1
       Data1.Recordset.MoveNext
    Loop

End Sub
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.