I have this function:
include "FWCE.ch"
FUNCTION m_DaNe(cMsg,aBtn,cTitle)
LOCAL oDlg
DEFINE DIALOG oDlg RESOURCE "msgDaNe"
REDEFINE SAY ID 3 OF oDlg PROMPT cMsg
REDEFINE BUTTON ID 1 OF oDlg PROMPT aBtn[1] ACTION oDlg:End(1)
REDEFINE BUTTON ID 2 OF oDlg PROMPT aBtn[2] ACTION oDlg:End(2)
ACTIVATE DIALOG oDlg
RETURN (oDlg:nResult)
- how can I use (start) debuger ?
- how can I change the caption (title) and background color of DIALOG ?
- how can I change the background color of REDEFINE SAY
- it is posible to redefine the size (width,height) of DIALOG after (before) it's activated ?
Thank you!