refresh btnbmp on a Panelscroll - RESOLVED

Post Reply
User avatar
Silvio.Falconi
Posts: 4956
Joined: Thu Oct 18, 2012 7:17 pm

refresh btnbmp on a Panelscroll - RESOLVED

Post by Silvio.Falconi »

Image

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
User avatar
Silvio.Falconi
Posts: 4956
Joined: Thu Oct 18, 2012 7:17 pm

Re: refresh btnbmp on a Panelscroll

Post 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
I use : FiveWin for Harbour August 2020 (Revision) - Harbour 3.2.0dev (r1712141320) - Bcc7.30 - xMate ver. 1.15.3 - PellesC
User avatar
nageswaragunupudi
Posts: 8017
Joined: Sun Nov 19, 2006 5:22 am
Location: India
Contact:

Re: refresh btnbmp on a Panelscroll

Post 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
 
Regards

G. N. Rao.
Hyderabad, India
User avatar
Silvio.Falconi
Posts: 4956
Joined: Thu Oct 18, 2012 7:17 pm

Re: refresh btnbmp on a Panelscroll

Post 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
I use : FiveWin for Harbour August 2020 (Revision) - Harbour 3.2.0dev (r1712141320) - Bcc7.30 - xMate ver. 1.15.3 - PellesC
User avatar
nageswaragunupudi
Posts: 8017
Joined: Sun Nov 19, 2006 5:22 am
Location: India
Contact:

Re: refresh btnbmp on a Panelscroll

Post by nageswaragunupudi »

This is working fine here.

Image
Regards

G. N. Rao.
Hyderabad, India
User avatar
Silvio.Falconi
Posts: 4956
Joined: Thu Oct 18, 2012 7:17 pm

Re: refresh btnbmp on a Panelscroll

Post by Silvio.Falconi »

Nages,
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
Post Reply