Membuat database terlebih dahulu pada VB, Jika belum tau cara membuatnya klik di sini
Selanjutnya buat command button seperti dibawah ini
Masukkan pada coding dibawah ini pada command button tersebut
Private Sub Command6_Click()
Adodc1.Recordset.MoveFirst
End Sub
Private Sub Command7_Click()
Adodc1.Recordset.MovePrevious
If Adodc1.Recordset.BOF Then
Adodc1.Recordset.MoveLast
End If
End Sub
Private Sub Command8_Click()
Adodc1.Recordset.MoveNext
If Adodc1.Recordset.EOF Then
Adodc1.Recordset.MoveFirst
End If
End Sub
Private Sub Command9_Click()
Adodc1.Recordset.MoveLast
End Sub
Dan hasilnya akan seperti dibawah ini
0 komentar:
Posting Komentar