Home  >  Article  >  How to display the next record of PB

How to display the next record of PB

小老鼠
小老鼠Original
2024-01-24 14:23:531350browse

Display method: 1. Make sure the data window is connected to the data source and there is data in the data source; 2. In the event or function that needs to display the next record, use the following code: dw_1.MoveNext() . Among them, dw_1 should be replaced with the name of your data window; 3. Run the application and trigger the event to display the next record, and the data window will display the data of the next record.

How to display the next record of PB

In PowerBuilder, to display the next record in the data window control, you can use the following method:

  1. Make sure the data window is connected to the data source and that there is data in the data source.

  2. In the event or function that needs to display the next record, use the following code: dw_1.MoveNext(). where dw_1 should be replaced with the name of your data window.

  3. Run the application and trigger the event of displaying the next record, and the data window will display the data of the next record.

The above is the basic method for displaying the next record in PB. The specific operations may vary according to the application needs and scenarios. If necessary, you can consult a computer professional.

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

Statement:
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