I didn't look at your code below, but if you handle a pop-up list in your
code, than you have to display it. If you don't handle it and the system
gets handled = false, the system should pop it up for you, if the list ID is
correct (if it isn't and you are using a debug rom on POSE, it will crash).
Elia
-----Original Message-----
From: Jimmy Stricker [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 26, 1999 8:46 AM
To: '[EMAIL PROTECTED]'
Subject: pop-up-list
I have a question regarding pop up lists.
Is there a limit to the amount of pop up controls and lists that can be put
into a single form?
I have several pop select controls in a specific form all associated with
non-usable lists. This works on
some of the pop up controls, but not all of them. On some of the controls
when I select them, nothing happens. Isn't the control suppossed to show
the list every time I select the pop up control regardless of my code. I
mean as long as I have a list associated with the control, it should show
the list. right?
else if (event->eType == popSelectEvent)
{
controlP = GetObjectPtr(event->data.popSelect.controlID);
switch(event->data.popSelect.controlID)
{
case DailyProgramWeekDayPopTrigger:
day = event->data.popSelect.selection;
g_dailyProgramDay = day;
CtlEraseControl(event->data.popSelect.controlP);
SetPopUpWeekDayLabel(day, controlP);
CtlDrawControl (event->data.popSelect.controlP);
handled = true;
break;
So my question is what am I doning wrong?
Thanks for the help,
Jimmy Stricker
[EMAIL PROTECTED]