Page 1 of 1
refresh btnbmp on a Panelscroll - RESOLVED
Posted: Wed Jul 01, 2020 5:38 am
by Silvio.Falconi
when I change the dates, through a function the item (nListino) of the combobox changes
IF oCombolistino !=NIL
oCombolistino:select(nListino)
eval(oCombolistino:bchange)
endif
when this happens I call the command
eval(oCombolistino:bchange)
on change on this combobox there is a function to refresh btnbmp on PanelScroll
the problem is that the combobox refreshes but then it does not execute the bchange command and the buttons in the panel are not refreshed
how do i solve?
Re: refresh btnbmp on a Panelscroll
Posted: Fri Jul 03, 2020 9:30 am
by Silvio.Falconi
Antonio, any solution Please, I sent you the test
I explain to you,
exactly when the user selects a date range automatically calculates the number of the price list to be displayed (nListino) and changes the item in the combobox;
the buttons inside the panelscroll are set so that for each price list (High season, Low season, Mid season and seasonal)
it displays the relative price, the possible items of the combobox are from 1 to 4.
If the whole season variable is True, calculated with a function, automatically the list is 4 the item is changed in the combobox (i.e. the fourth item) and consequently it should load the block bchange code function to refresh all the buttons that are inside of the panel
When the combobox is refreshed it does not perform the bchange function and therefore the buttons are not refreshed by displaying the incorrect price and if the user selects an item the price is always incorrect with respect to the selected period.
This is strange because if the user changes the position of the combobox by selecting another item then the function is called correctly and the buttons are refreshed.
the problem is that it doesn't do it automatically
that is, the refresh should do it without the user manually changing the combobox item
I did a lot of tests to make the buttons cool but I couldn't
Re: refresh btnbmp on a Panelscroll
Posted: Sat Jul 04, 2020 4:05 pm
by nageswaragunupudi
Please change this
IF oCombolistino !=NIL
oCombolistino:select(nListino)
eval(oCombolistino:bchange)
endif
as
Code: Select all
IF oCombolistino !=NIL
oCombolistino:set(nListinoNew)
eval(oCombolistino:bchange)
endif
Re: refresh btnbmp on a Panelscroll
Posted: Sat Jul 04, 2020 7:59 pm
by Silvio.Falconi
nageswaragunupudi wrote:Please change this
IF oCombolistino !=NIL
oCombolistino:select(nListino)
eval(oCombolistino:bchange)
endif
as
Code: Select all
IF oCombolistino !=NIL
oCombolistino:set(nListinoNew)
eval(oCombolistino:bchange)
endif
Nages,
The combobox Is refreshed
The btnbmps are not refreshed
Re: refresh btnbmp on a Panelscroll
Posted: Sun Jul 05, 2020 1:23 am
by nageswaragunupudi
This is working fine here.
Re: refresh btnbmp on a Panelscroll
Posted: Sun Jul 05, 2020 7:16 am
by Silvio.Falconi
Nages,
Ok It was the "set " of combobox
Thanks