首页 相关文章 手把手教你使用VB来创建ASP组件(5)

手把手教你使用VB来创建ASP组件(5)

5、 IsEof方法

  IsEof方法是用来判断是否还有更多的信息

其代码如下

Private Function IsEof() As Boolean

IsEof = RecordSetCD.EOF

End Function

6、 NextCD 方法

  NextCD方法的目的是返回当前的CD信息,并将记录集的指针向下移动,这可以通过MoveNext方法和IsEof配合使用来实现

Private Sub NextCD(Id As Variant, Name As Variant, Author As Variant, Price As Variant, Information As Variant)

On Error Resume Next

If IsEof = True Then

Err.Raise vbObject + 1, "CD Information", "End of cursor"

Exit Sub

End If

Id = RecordSetCD.Field...[ 查看全文 ]

2016-01-29 标签:

手把手教你使用VB来创建ASP组件(5)的相关文章

手机页面
收藏网站 回到头部