refresh btnbmp on a Panelscroll - RESOLVED
- Silvio.Falconi
- Posts: 4956
- Joined: Thu Oct 18, 2012 7:17 pm
refresh btnbmp on a Panelscroll - RESOLVED
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?
Last edited by Silvio.Falconi on Wed Jul 08, 2020 3:50 pm, edited 1 time in total.
I use : FiveWin for Harbour August 2020 (Revision) - Harbour 3.2.0dev (r1712141320) - Bcc7.30 - xMate ver. 1.15.3 - PellesC
- Silvio.Falconi
- Posts: 4956
- Joined: Thu Oct 18, 2012 7:17 pm
Re: refresh btnbmp on a Panelscroll
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
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
I use : FiveWin for Harbour August 2020 (Revision) - Harbour 3.2.0dev (r1712141320) - Bcc7.30 - xMate ver. 1.15.3 - PellesC
- nageswaragunupudi
- Posts: 8017
- Joined: Sun Nov 19, 2006 5:22 am
- Location: India
- Contact:
Re: refresh btnbmp on a Panelscroll
Please change this
asIF oCombolistino !=NIL
oCombolistino:select(nListino)
eval(oCombolistino:bchange)
endif
Code: Select all
IF oCombolistino !=NIL
oCombolistino:set(nListinoNew)
eval(oCombolistino:bchange)
endif
Regards
G. N. Rao.
Hyderabad, India
G. N. Rao.
Hyderabad, India
- Silvio.Falconi
- Posts: 4956
- Joined: Thu Oct 18, 2012 7:17 pm
Re: refresh btnbmp on a Panelscroll
Nages,nageswaragunupudi wrote:Please change thisasIF oCombolistino !=NIL
oCombolistino:select(nListino)
eval(oCombolistino:bchange)
endif
Code: Select all
IF oCombolistino !=NIL oCombolistino:set(nListinoNew) eval(oCombolistino:bchange) endif
The combobox Is refreshed
The btnbmps are not refreshed
I use : FiveWin for Harbour August 2020 (Revision) - Harbour 3.2.0dev (r1712141320) - Bcc7.30 - xMate ver. 1.15.3 - PellesC
- nageswaragunupudi
- Posts: 8017
- Joined: Sun Nov 19, 2006 5:22 am
- Location: India
- Contact:
- Silvio.Falconi
- Posts: 4956
- Joined: Thu Oct 18, 2012 7:17 pm
Re: refresh btnbmp on a Panelscroll
Nages,
Ok It was the "set " of combobox
Thanks
Ok It was the "set " of combobox
Thanks
I use : FiveWin for Harbour August 2020 (Revision) - Harbour 3.2.0dev (r1712141320) - Bcc7.30 - xMate ver. 1.15.3 - PellesC