Tham khảo tài liệu 'visual basic 6 vovisoft part 32', công nghệ thông tin, kỹ thuật lập trình phục vụ nhu cầu học tập, nghiên cứu và làm việc hiệu quả | Sau khi dùng method MoveFirst của Recordset để position current record ở Record đầu tiên ta hiển thị trị số các fields của record bằng cách assign chúng vào các textboxes của Form như sau Private Sub Displayrecord Assign record fields to the appropriate textboxes With myRS Assign field Title to textbox txtTitle .Fields Title .Fields Year Published .Fields ISBN .Fields PubID End With End Sub Để ý vì field Year Publshed gồm có hai chữ nên ta phải đặt tên của field ấy giữa hai dấu ngoặc vuông . Để tránh bị phiền phức như trong trường hợp nầy khi bạn đặt tên database field trong lúc thiết kế một table hãy dán dính các chữ lại với nhau đừng để rời ra. Thí dụ như dùng YearPublished thay vì Year Published. Các nút di chuyển Muốn có các nút Navigators tương đương với của một Control Data bạn hãy đặt lên Form 4 buttons mang tên CmdFirst CmdPrevious CmNext và CmdLast với captions . Code cho các nút nầy cũng đơn giản nhưng ta phải coi chừng khi user muốn di chuyển quá record cuối cùng hay record đầu tiên. Ta phải kiểm tra xem EOF có trở thành True khi user click CmdNext hay BOF có trở thành True khi user click CmdPrevious Private Sub CmdNext_Click Move to next record Display record details if has not gone past the last record If Not Then Displayrecord display details of current record Else Move back to last record End If End Sub Private Sub CmdPrevious_Click Move to previous record Display record details if has not gone past the first record If Not Then Displayrecord display details of current record Else Move back to first record End If End Sub Private Sub CmdFirst_Click Move back to first record Displayrecord display details of current record End Sub Private Sub CmdLast_Click Move back to last record Displayrecord display details of current record End Sub Khi chạy chương trình bạn sẽ thấy nó hiển thị