At 08:03 PM 6/23/2010, [email protected] wrote:
After spending a bit of time with the syntax, I could not get a
DIALOG with a custom date popup working.
Could someone be kind enough to provide a simple example of the
syntax needed?
Hello Ken,
Here you go ...
-- start here
CLS
CLEAR VAR vDateTxt,vDate,vEndKey
SET VAR vDateTxt TEXT = NULL
SET VAR vDate DATE = NULL
DIALOG 'Enter Date (mm/dd/yyyy) or Double-Click for Calendar' +
vDateTxt=37 vEndKey 1 +
CAPTION 'DIALOG with Date Pop-up' ICON APP OPTION +
POPUP_ENABLED TRUE +
|POPUP_DIALOG_TYPE DATE +
|THEMENAME Vista CG
SET VAR vDate = .vDateTxt
RETURN
-- end here
Let me know if you need a few more "custom" samples.
Very Best R:egards,
Razzak.