Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

     Add_Entry To_List(#List)
#List.CurrentItem.Image <= #Image1

SELECTLIST ループで CurrentItem を使用して項目の状態をチェックします。ここでは、リスト内の選択された項目が合計されています。 

     SelectList Named(#List)
Continue (*Not #Item.Selected)

#TotalSalary += #Salary

EndSelect

FOR コマンドを使用すると、並べ替えられた順序で項目が繰り返し処理されますが、 CurrentItem は設定されません。 

...

     For Each(#Item) in(#List.Items) 

Get_Entry Number(#Item.Entry) From_List(#List)
* User processing here

EndFor

...