在 powerbuilder 数据窗口中显示下一条记录的方法有:使用向下箭头键 (↓) 移动到下一条记录。单击列或单元格并右键选择“下一条记录”。使用 getrowindex() 和 setrowindex() 方法移动到指定索引处的记录。使用 retrievenext() 命令检索下一条记录。在 rowfocuschanged 事件中处理下一条记录,并根据当前索引移动到下一条记录。
PB数据窗口下一条记录如何显示
在PowerBuilder数据窗口中,有以下几种方式可以显示下一条记录:
1. 使用键盘快捷键
- 按下向下箭头键(↓)即可移动到下一条记录。
2. 使用鼠标
- 单击数据窗口中的列或单元格以选择该记录。
- 将鼠标悬停在记录上并单击右键,然后选择“下一条记录”。
3. 使用DataSet对象
<code class="powerbuilder">//获取当前记录索引 integer li_CurrentRowIndex = dw_data.GetRowIndex() //移动到下一条记录 li_CurrentRowIndex++ //将数据窗口移至新记录 dw_data.SetRowIndex(li_CurrentRowIndex)</code>
登录后复制
4. 使用检索命令
<code class="powerbuilder">//检索下一条记录 dw_data.RetrieveNext()</code>
登录后复制
5. 使用事件处理
<code class="powerbuilder">//在数据窗口的RowFocusChanged事件中处理下一条记录 dw_data.RowFocusChanged := Handle(hEvent) integer li_CurrentRowIndex li_CurrentRowIndex = dw_data.GetRowIndex() //如果是最后一条记录,则显示第一条记录 if li_CurrentRowIndex = dw_data.RowCount() dw_data.SetRowIndex(1) else //移动到下一条记录 li_CurrentRowIndex++ dw_data.SetRowIndex(li_CurrentRowIndex) end if return 0</code>
登录后复制
以上就是PB数据窗口下一条记录如何显示的详细内容,更多请关注叮当号网其它相关文章!
文章来自互联网,只做分享使用。发布者:momo,转转请注明出处:https://www.dingdanghao.com/article/306886.html