You can do this with a little bit of script on your check box's Click event (in FormCalc in this example):
if ($ == 1) then
DateTimeField1.format.picture = "DD/MMM/YYYY"
else
DateTimeField1.format.picture = "MM/DD/YYYY"
endif
The trick is to know that in XFA, what Designer refers to as the "Display" picture is the <format> node which contains a <picture> which, in turn, contains the "display" picture; or, the picture used to
format the field's value for display purposes.
I've attached a sample form which demonstrates this.
Stefan
Adobe Systems