I encountered the following problem:
After adding some columns to a listicon gadget and then rename the Object, the generated source is no longer valid.
AddGadgetColumn() then contains still the old object name which looks like that:
Code: Select all
LST_Anmeldungen_Anmeldungen = ListIconGadget(#PB_Any, 20, 170, 1020, 480, "Nr.", 30, #PB_ListIcon_GridLines | #PB_ListIcon_FullRowSelect | #PB_ListIcon_AlwaysShowSelection)
AddGadgetColumn(ListIcon_1, 2, "Absender", 150)
AddGadgetColumn(ListIcon_1, 3, "Empfänger", 150)
AddGadgetColumn(ListIcon_1, 4, "Von", 150)