|
From: Alexander S.K. <al...@be...> - 2014-10-24 05:30:28
|
> Yes, it's probably the reason. But I have an error
>
> @ 15,32 GET COMBOBOX cCommune ITEMS aCommunes STYLE WS_TABSTOP SIZE
> 290, 25;
> TOOLTIP "Choix de la commune" ON CHANGE
> {||SearchType(cCommune),cType:Refresh()};
> TEXT
>
> Error BASE/1004 No exported method: REFRESH
Naturally. What cType is ? You need the combobox object, to have it
you can define the get combobox with such syntax:
@ 15,32 GET COMBOBOX oCombo VAR cCommune ITEMS aCommunes ...
Then you can write oCombo:Refresh()
Regards, Alexander.
|