WITH frmDirectory
.CAPTION = "DIRECTORY"
.clientwidth = 400
.clientheight = 460
.center
.delbordericons 1
.font = fntScreen
END WITH
WITH pnlDirectory
.PARENT = frmDirectory
.height = 40
.align = 2
.bevelouter = 0
END WITH
WITH dirTree
.PARENT = frmDirectory
.align = 5
END WITH
WITH btnDirectoryOK
.PARENT = pnlDirectory
.width = 200: .align = 3
.kind = 1
END WITH
WITH btnDirectoryCancel
.PARENT = pnlDirectory
.width = 200: .align = 4
.kind = 2
END WITH
|