Hi !
I wanted to generate a list for a user so he ca choose the abscissa he wants (for a graph) here is the script :
// Créer une liste des options pour la liste déroulante
options = {"Supplier", "Supplier_Quarter"};
// Créer une boîte de dialogue personnalisée avec une liste déroulante
dlg = New Window("Sélectionnez une abscisse de travail",
<<Modal,
V List Box(
Text Box("Sélectionnez une valeur parmi la liste déroulante:"),
comboBox = Combo Box(options),
H List Box(
// Créer le bouton OK
Button Box("OK", dlg << Close(comboBox << Get Selected)),
// Créer le bouton Cancel
Button Box("Cancel", dlg << Close(""))
)
)
);
// Récupérer la sélection de l'utilisateur
selection = dlg << Get Result;
Print("Vous avez sélectionné : " || Char(selection));
Edit (jthi 2024-08-11): added jsl formatting
Here is the problem : I have a message error : Name Unresolved: Button
What do I have to do to make it works without issues ?