Page 1 of 1

[SOLVED] ForEach is a Syntax error -- WHAT?!!!

Posted: Wed Nov 05, 2025 1:15 am
by Randy Walker
This is a slightly modified Sample from ListViewGadget() help. Modified to try to figure out why ForEach is a syntax error. I got nowhere:

Code: Select all

NewList Test.s()
For a = 1 To 12
  AddElement(Test())
  Test() = "Item " + Str(a) + " of the Listview"
  Debug Test()
Next

If OpenWindow(0, 0, 0, 270, 140, "ListViewGadget", #PB_Window_SystemMenu | #PB_Window_ScreenCentered)
  ListViewGadget(0, 10, 10, 250, 120)
  ForEach
    AddGadgetItem Test()
  Next
  SetGadgetState(0, 9) ; set (beginning with 0) the tenth item as the active one
  Repeat : Until WaitWindowEvent() = #PB_Event_CloseWindow
EndIf


Re: ForEach is a Syntax error -- WHAT?!!!

Posted: Wed Nov 05, 2025 1:20 am
by Randy Walker
Ok, Again. stupid me. I didn't quite finish these two lines:

Code: Select all

  ForEach Test()
    AddGadgetItem(0,-1,Test())
Sorry to bother you. :oops: