回 帖 发 新 帖 刷新版面

主题:datagrid控件分页问题

Option Explicit

Dim conn As ADODB.Connection

Dim lCurrentPage As Long


Private Sub cmdNext_Click()

 lCurrentPage = lCurrentPage + 1

 Call Loadcontrol(lCurrentPage)

End Sub


 

Private Sub cmdPrevious_Click()

 If lCurrentPage > 1 Then

 lCurrentPage = lCurrentPage - 1

 Call Loadcontrol(lCurrentPage)

End If

End Sub

 

Private Sub Form_Load()

 

 Set conn = New ADODB.Connection

conn.CursorLocation = adUseClient

 conn.Open "PROVIDER=Microsoft.Jet.OLEDB.4.0;Data Source=" & App.Path & "\test2000.mdb;"

 

lCurrentPage = 1

 Call Loadcontrol(lCurrentPage)

 

End Sub

Private Sub Loadcontrol(lPage As Long)

 Dim adoPrimaryRS As ADODB.Recordset

 Dim lPageCount As Long

 Dim nPageSize As Integer

Dim lCount As Long

 

'每页显示的纪录

 nPageSize = 10

 Set adoPrimaryRS = New ADODB.Recordset

 adoPrimaryRS.Open "select * from numbers", conn, adOpenStatic, adLockOptimistic

 

 adoPrimaryRS.PageSize = nPageSize

 '页数

 lPageCount = adoPrimaryRS.PageCount

 If lCurrentPage > lPageCount Then

 lCurrentPage = lPageCount

 End If

 

 adoPrimaryRS.AbsolutePage = lCurrentPage

 '定义另一个记录集

Dim objrs As New ADODB.Recordset

 '添加字段名称

For lCount = 0 To adoPrimaryRS.Fields.Count - 1

 objrs.Fields.Append adoPrimaryRS.Fields(lCount).Name, adVarChar, adoPrimaryRS.Fields(lCount).DefinedSize

 Next

 '打开记录集

objrs.Open

 '将指定记录数循环添加到objrs中

 For lCount = 1 To nPageSize

 objrs.AddNew

 objrs!id = adoPrimaryRS!id

 objrs!anumber = adoPrimaryRS!anumber

 adoPrimaryRS.MoveNext

 Next

 '绑定

 Set DataGrid1.DataSource = objrs

 

 '在文本框显示页数

 txtPage = lPage & "/" & adoPrimaryRS.PageCount

End Sub

 

Private Sub Form_Unload(Cancel As Integer)

If Not conn Is Nothing Then

 conn.Close

End If

 Set conn = Nothing

End Sub

‘文本框中输入页数,回车跳转到指定位置

Private Sub txtPage_KeyDown(KeyCode As Integer, Shift As Integer)

 lCurrentPage = Val(txtPage.Text)

 Call Loadcontrol(lCurrentPage)

End Sub

每次到了最后一页的时候,就报错,不知道是为什么,请各位帮忙给看一下。

回复列表 (共2个回复)

沙发


这个只要加入以下代码就可以
For lCount = 1 To nPageSize
If adoprimaryrs.EOF Then Exit For   '加入这段代码就可以了.
objrs.AddNew
我也是网上找得这段代码,不过现在我的问题是,在分页模式下,我的增加删除功能都没用了.DATAGRID不能像以前那样自动调整了.你有办法吗.大家共享一下.

板凳

http://www.taocaibang.com/job.php?mod=view&jid=65082
数码公社互动运营专员 
ss
搜狐公司 
公司类型:外资(欧美) 公司规模:500人以上 ss
发布时间 :2010-10-16 工作年限 :不限 工作方式 :全职 薪金待遇 :面议 性别要求 :不限 学历要求 :本科 招聘人数 :2 到期时间 :2010-11-15 户口要求 :无要求

我来回复

您尚未登录,请登录后再回复。点此登录或注册