PB データ ウィンドウで次のレコードを表示する方法
PowerBuilder データ ウィンドウで次のレコードを表示するには、次の方法があります。
1 . キーボード ショートカット
2. マウスを使用してデータ ウィンドウ内の列またはセルをクリックし、レコードを選択します。
レコードの上にマウスを移動して右クリックし、「次のレコード」を選択します。<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データウィンドウで次のレコードを表示する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。