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]

Reply via email to