Wht is the god command please.
Sorry for my english, i am french !!!!
A+
Denis

Try:brossden wrote:The Command : AddGadgetItem(#Gadget_X,-1, "XXXXXXX") is not Ok
Wht is the god command please.
Sorry for my english, i am french !!!!
A+
Denis
Code: Select all
Dim meses.s(13)
meses(0)="Janeiro"
meses(1)="Fevereiro"
meses(2)= "Março"
meses(3)= "Abril"
meses(4)= "Maio"
meses(5)= "Junho"
meses(6)= "Julho"
meses(7)= "Agosto"
meses(8)= "Setembro"
meses(9)= "Outubro"
meses(10)= "Novembro"
meses(11)= "Dezembro"
meses(12)= "Todos"
;window open code here
ComboBoxGadget(1, 110, 70, 185, 120) ;<-Don't forget to add 120 pixels or the combo won't show the lines
For a = 0 To 12
AddGadgetItem(1, - 1, meses(a))
Next