Hi Klaus - super newbie here.
From the code you modified for netchicken, could you explain how exactly this piece of code works - particularly the calculations you perform.
I'm having trouble customizing this code for my scroll view. Thanks in advance
Sub View_Click
    Dim Send As View
    Dim row, Obj As Int
    Send=Sender
   
    row=Floor(Send.Tag/10)    'HERE!!
    Obj=Send.Tag-row*10     ' HERE!!
    Select Obj
    Case 0
        Activity.Title="view click Row = "&row&" Main Panel"
    Case 1   
        Activity.Title="view click Row = "&row&"  Product = "&Obj
       
    Case 2,3,4,5
        Activity.Title="view click Row = "&row&"  Label = "&Obj
    Case 6
        Activity.Title="view click Row = "&row&"  Image"
    End Select   
End Sub