Le forum (ô combien francophone) des utilisateurs de Powerbuilder.
Ces 2 fonctions peuvent sauter des lignes si le 1ier TabSequence de la ligne précedente ou suivante, selon la méthode utilisée, est Protect.
Contournement avec:
Long ll_row If IsValid(idw) then //idw.ScrollPriorRow() ll_row = idw.GetRow() If ll_row > 1 Then idw.SetRow(ll_row - 1) idw.ScrollToRow(ll_row - 1) End If End If
et
Long ll_row If IsValid(idw) then //idw.idw.ScrollNextRow() ll_row = idw.GetRow() If ll_row < idw.RowCount() Then idw.SetRow(ll_row + 1) idw.ScrollToRow(ll_row + 1) End If End If
Constaté sur PB 12.6
Dernière modification par John77 (23-11-2018 14:47:08)
Hors ligne