主页 > 知识库 > 记录集内随机取记录的代码

记录集内随机取记录的代码

热门标签:镇江云外呼系统怎么样 vue 地图标注拖拽 自动外呼系统怎么防止封卡 电话机器人销售公司吗 成都销售外呼系统公司 客服外呼系统呼叫中心 保定电销机器人软件 土地证宗地图标注符号 电话机器人案例
%
' Moving to random record - Steven Jones' Extension
If Not(记录集名称.bof and 记录集名称.eof) Then
' reset the cursor to the beginning
If (记录集名称.CursorType > 0) Then
记录集名称.MoveFirst
Else
记录集名称.Requery
End If

记录集名称_totalrn = -1
记录集名称_totalrn = 记录集名称.RecordCount ' ony works on some recordsets, but much faster
If (记录集名称_totalrn = -1) Then ' and if it didn't work, we still have to count the records.

' count the total records by iterating through the recordset
记录集名称_totalrn=0
While (Not 记录集名称.EOF)
记录集名称_totalrn = 记录集名称_totalrn + 1
记录集名称.MoveNext
Wend

' reset the cursor to the beginning
If (记录集名称.CursorType > 0) Then
记录集名称.MoveFirst
Else
记录集名称.Requery
End If

End If

' now do final adjustments, and move to the random record
记录集名称_totalrn = 记录集名称_totalrn - 1
If 记录集名称_totalrn > 0 Then
Randomize
记录集名称.Move Int((记录集名称_totalrn + 1) * Rnd)
End If
End If
' all done; you should always check for an empty recordset before displaying data
%>

标签:天津 丽江 台湾 重庆 内江 怀化 公主岭 成都

巨人网络通讯声明:本文标题《记录集内随机取记录的代码》,本文关键词  记录,集内,随机,取,的,代码,;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 下面列出与本文章《记录集内随机取记录的代码》相关的同类信息!
  • 本页收集关于记录集内随机取记录的代码的相关信息资讯供网民参考!
  • 推荐文章

    上一篇:万能数据库连接程序

    下一篇:分页代码