The date choose has a min height (it won't get smaller then a certain size)
you need to increase the height of your form
<cfform height="300"...

hth,
---nimer

"sloan2b" <webforumsuser@macromedia.com> wrote in message
news:cur97n$eho$1@forums.macromedia.com...
> Anyone notice the calendar for the "datefield" gets cut off if it is near
> the
> top of the flash form? Is there a way around this or is it a bug? Where
> can
> you submit bugs for MX 7 or is this the right place? Code is below...
>
>
>
> <body>
> <cfform method="get" preservedata="true" format="flash" height="250"
> width="500" skin="haloblue">
> <cfformgroup type="panel" label="Tab Form">
> <cfformgroup type="tabnavigator" height="200">
> <cfformgroup type="page" label="General">
> <cfinput type="text" name="firstName" label="First Name">
> <cfinput type="text" name="lastName" label="Last Name">
> </cfformgroup>
> <cfformgroup type="page" label="Address">
> <cfinput type="text" name="street" label="Street Address">
> <cfinput type="text" name="city" label="City">
> <cfinput type="text" name="state" label="State">
> <cfinput type="text" name="zip" label="Zip Code">
> </cfformgroup>
> <cfformgroup type="page" label="Misc">
> <cfinput type="text" name="credit" label="Credit Card"
> mask="9999-9999-9999-9999" validate="creditcard">
> <cfinput type="datefield" name="date" label="Date">
> </cfformgroup>
> </cfformgroup>
> </cfformgroup>
> </cfform>
> </body>
>