I have seen a few issues on the list this morning related to menu placement 
over/under another menu.
So I thought I would repost my issue.

My Calendar POP-UP, that worked in previous release (7.6), now comes up behind 
the Enter Date Dialog below.
I have had this problem since upgrading to 9.1. (32) (Version: 9.1.2.10119)

Back on 1/27 Javier Valencia replied that my code below was working fine for 
him.  He tried it with 9.0 (64) and 9.1 (64).
So I assumed it was one of my setting.  I have been trying to resolve since 
without success.

SET QUOTES="
CLEAR VAR iv%,vcaption,vresponse,vendkey
SET VAR vcaption TEXT = "Enter Date For Report"
SET VAR vresponse TEXT = NULL
SET VAR vendkey TEXT = NULL
LABEL getdate
CLS
DIALOG "Enter Date (mm/dd/yy) or Double-Click for Calendar" +
vresponse=8 vendkey 1 +
CAPTION .vcaption +
ICON apps +
OPTION POPUP_ENABLED TRUE +
|POPUP_DIALOG_TYPE DATE +
|POPUP_TITLE_FONT_NAME Tahoma +
|POPUP_TITLE_FONT_SIZE 10 +
|POPUP_TITLE_FONT_BOLD TRUE +
|POPUP_TITLE_FONT_COLOR BLACK +
|POPUP_TITLE_BACK_COLOR WHITE +
|POPUP_TITLE_TEXT SELECT Customer +
|POPUP_LIST_FONT_COLOR GRAY +
|POPUP_LIST_BACK_COLOR WHITE +
|POPUP_CAPTION LIST OF Customers +
|DIALOG_EDIT_HINT DoubleClick Here FOR Calendar +
|THEMENAME longhorn
RETURN

I have been able to "work around" with the TOP 200 and LEFT 550 options below.

CLEAR VAR iv%,vCaption,vResponse,vEndKey

   SET VAR vCaption TEXT = "Enter Date For Report"

   SET VAR vResponse TEXT = NULL

   SET VAR vEndkey TEXT = NULL

LABEL GetDate

    CLS

    DIALOG "Enter Date (mm/dd/yy) or Double-Click for Calendar" +

    vResponse=8 vEndKey 1 +

    CAPTION .vCaption +

    ICON APPS +

    OPTION POPUP_ENABLED TRUE +

    |POPUP_DIALOG_TYPE DATE +

    |POPUP_TITLE_FONT_NAME Tahoma +

    |POPUP_TITLE_FONT_SIZE 10 +

    |POPUP_TITLE_FONT_BOLD TRUE +

    |POPUP_TITLE_FONT_COLOR BLACK +

    |POPUP_TITLE_BACK_COLOR WHITE +

    |POPUP_TITLE_TEXT Select Customer +

    |POPUP_LIST_FONT_COLOR GRAY +

    |POPUP_LIST_BACK_COLOR WHITE +

    |POPUP_CAPTION List of Customers +

|TOP 200 +

|LEFT 550 +

    |DIALOG_EDIT_HINT DoubleClick Here for Calendar +

    |THEMENAME longhorn

Thanks in advance

Dayle Coxen
Florida DOT
(850) 410-5635

Reply via email to