is possible make a dialog no caption into a dialog ?
I wish create it as this picture :

I made this code but the dialog come to another position and not on the dialog
#include "FiveWin.ch"
#include "constant.ch"
Function test
Local odlg
Local nBottom := 16.5
Local nRight := 66
Local nWidth := Max( nRight * DLG_CHARPIX_W, 180 )
Local nHeight := nBottom * DLG_CHARPIX_H
Local odlg2,obtn
DEFINE DIALOG oDlg SIZE nWidth, nHeight TRANSPARENT PIXEL
@1,2 BUTTON obtn PROMPT "go" size 40,10 of oDlg ACTION Make_dlg2(oDlg)
ACTIVATE DIALOG oDlg CENTER
return nil
Function Make_dlg2(oDlg)
Local SuboDlg
DEFINE DIALOG SuboDlg OF oDlg
//SuboDlg:nStyle := nOR(WS_CAPTION , 4 )
ACTIVATE DIALOG SuboDlg
return nil
I wish create it as this picture :

I made this code but the dialog come to another position and not on the dialog
#include "FiveWin.ch"
#include "constant.ch"
Function test
Local odlg
Local nBottom := 16.5
Local nRight := 66
Local nWidth := Max( nRight * DLG_CHARPIX_W, 180 )
Local nHeight := nBottom * DLG_CHARPIX_H
Local odlg2,obtn
DEFINE DIALOG oDlg SIZE nWidth, nHeight TRANSPARENT PIXEL
@1,2 BUTTON obtn PROMPT "go" size 40,10 of oDlg ACTION Make_dlg2(oDlg)
ACTIVATE DIALOG oDlg CENTER
return nil
Function Make_dlg2(oDlg)
Local SuboDlg
DEFINE DIALOG SuboDlg OF oDlg
//SuboDlg:nStyle := nOR(WS_CAPTION , 4 )
ACTIVATE DIALOG SuboDlg
return nil
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)
I use : FiveWin for Harbour March-April 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
I use : FiveWin for Harbour March-April 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com




