/*--------------------------- DROP.RC resource script -------------------------*/ // #include "windows.ch" // NTK: This is no more allowed #include "drop.ch" /* NTK: The following doesn't work properly anymore in Win32 environement DropBox DIALOG 20, 20, 140, 188 STYLE WS_POPUP | WS_DLGFRAME { CTEXT "Select some files in File Manager" -1, 0, 12, 140, 8 CTEXT "And drop them in one of zones" -1, 4, 36, 130, 8 GROUPBOX "Zone 1" -1, ZONE1x, ZONE1y, ZONE1xSIZE, ZONE1ySIZE CTEXT "" IDD_ZONE1, ZONE1x, ZONE1y, ZONE1xSIZE, ZONE1ySIZE GROUPBOX "Zone 2" -1, ZONE2x, ZONE2y, ZONE2xSIZE, ZONE2ySIZE CTEXT "" IDD_ZONE2, ZONE2x, ZONE2y, ZONE2xSIZE, ZONE2ySIZE DEFPUSHBUTTON "OK" IDOK 50, 168, 40, 14 } */ // NTK: This is more correct for a Win32 environement... DropBox DIALOG 20, 20, 140, 188 /* CAPTION "Drop zones..." */ STYLE WS_POPUP | WS_DLGFRAME FONT 10, "MS Sans Serif" { LTEXT "Select some files in File Manager" -1, 0, 12, 140, 8 LTEXT "And drop them in one of zones" -1, 4, 36, 130, 8 GROUPBOX "Zone 1" -1, ZONE1x, ZONE1y, ZONE1xSIZE, ZONE1ySIZE LTEXT "111" IDD_ZONE1, ZONE1x+10, ZONE1y+10, ZONE1xSIZE-20, ZONE1ySIZE-20 GROUPBOX "Zone 2" -1, ZONE2x, ZONE2y, ZONE2xSIZE, ZONE2ySIZE LTEXT "222" IDD_ZONE2, ZONE2x+10, ZONE2y+10, ZONE2xSIZE-20, ZONE2ySIZE-20 DEFPUSHBUTTON "OK" IDOK 50, 168, 40, 14 }