User forums > General (but related to Code::Blocks)
GetListboxSelection always returns -1
(1/1)
jahme:
Hi,
I'm trying to write a wizard.script file for my company, but I'm having trouble with GetListboxSelection function it keeps returning -1.
The function I have implemented passes the selected list item into the variable boardChoice see below.
"function OnLeave_JennicBoardSelection(forward)
{
if (forward)
{
boardChoice = Wizard.GetListboxSelection(_T("JennicBoardSelection"));
}
return true;"
The implementation of the page is done here;
"//Page to select the board that you are developing on from a list
Wizard.AddGenericSingleChoiceListPage(_T("JennicBoardSelection"), descr, _T("DK1;DK2;NTS;HighPowerDevelopmentKit"), 1);"
Any Ideas, apologies if I posted on the wrong forum.
Regards Jahme
Biplab:
Change the following code-
--- Code: ---boardChoice = Wizard.GetListboxSelection(_T("JennicBoardSelection"));
--- End code ---
To
--- Code: ---boardChoice = Wizard.GetListboxSelection(_T("GenericChoiceList"));
--- End code ---
You are getting -1 as the ListBox name in AddGenericSingleChoiceListPage is GenericChoiceList :)
jahme:
Great that works!
I could not find any reference to GenericChoiceList in the documentation.
Thanks for the help :D
Biplab:
--- Quote from: jahme on February 02, 2007, 06:44:10 pm ---I could not find any reference to GenericChoiceList in the documentation.
--- End quote ---
I agree with you. I had to struggle with this issue once. I'll update the wiki later.
--- Quote from: jahme on February 02, 2007, 06:44:10 pm ---Thanks for the help :D
--- End quote ---
You are most Welcome. :)
Navigation
[0] Message Index
Go to full version