Hi ,
i got a list with many buttons , and i want to get the tag of each button using same id just the tag is different in one click sub if this is possible .
I looked up in the forum and i could not find anything .
Since I try to make the ABM as a ERP I have to learn a lot
thanks AH
i got a list with many buttons , and i want to get the tag of each button using same id just the tag is different in one click sub if this is possible .
I looked up in the forum and i could not find anything .
Since I try to make the ABM as a ERP I have to learn a lot
B4X:
Dim butt1 As ABMButton
butt1.InitializeFlat(page,"r" &serverli ,"","","STOP","red")
butt1.UseFullCellWidth=True
butt1.Tag=serverli
servercount.Cell(1,4).AddComponent(butt1)
Dim butt2 As ABMButton
butt2.InitializeRaised(page,"s" &serverli,"","","START","green")
butt2.UseFullCellWidth=True
butt2.Tag=serverli
servercount.Cell(1,5).AddComponent(butt2)
thanks AH