Home > Common Problem > body text

How to display the next record in the PB data window

小老鼠
Release: 2024-04-04 19:54:17
Original
514 people have browsed it

How to display the next record in the PB data window

In the PowerBuilder data window, there are the following ways to display the next record:

1 . Use the keyboard shortcut

  • to move to the next record by pressing the down arrow key (↓).

2. Use the mouse to

  • #click a column or cell in the data window to select the record.
  • Hover over the record and right-click, then select Next Record.

3. Use DataSet object

<code class="powerbuilder">//获取当前记录索引
integer li_CurrentRowIndex = dw_data.GetRowIndex()

//移动到下一条记录
li_CurrentRowIndex++

//将数据窗口移至新记录
dw_data.SetRowIndex(li_CurrentRowIndex)</code>
Copy after login

4. Use retrieval command

<code class="powerbuilder">//检索下一条记录
dw_data.RetrieveNext()</code>
Copy after login

5. Using event handling

<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>
Copy after login

The above is the detailed content of How to display the next record in the PB data window. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!