11996.html

来自「以电子书的形式收集了VB一些常见问题解决方法,可以很方便的查找自己需要解决的问题」· HTML 代码 · 共 23 行

HTML
23
字号
<html>
  <head>
    <title>Re: Answer for &quot;总笔数&quot;</title>
  </head>
  <body bgcolor="#FFFFFF" vlink="#808080">
    <center>
      <h1>Re: Answer for &quot;总笔数&quot;</h1>
    </center>
<hr size=7 width=75%>

<hr size=7 width=75%><p>
Posted by Spencer Yang on April 15, 1999 at 04:08:29:<p>
In Reply to: <a href="11978.html">DAO物件的问题?</a> posted by Alan on April 14, 1999 at 17:01:40:<p>
关于显示总笔数, 可参阅 vb help 之中RecordCount之说明及其范例。<p>另造成上一笔或下一笔移动之错误,在于是否判断到达第一笔或者最后一笔。<p>case "上笔"<br>    data1.recordset.moveprevious<br>    if data1.recordset.bof then<br>       data1.recordset.movefirst<br>    end if<br>case "下笔"<br>    data1.recordset.movefirst<br>    if data1.recordset.eof then<br>       data1.recordset.movelast<br>    end if<p><br>
<br>
<br><hr size=7 width=75%><p>
<a name="followups">Follow Ups:</a><br>
<ul><!--insert: 11996-->
</ul><!--end: 11996-->
<br><hr size=7 width=75%><p>

</body></html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?