In order to have total control over the layout and appearance of a form, we are opting to not use the FormLayout because it seems to have tight control over layout of elements. So, we are attempting to use absolute positioning along with the ability for a control to resize itself, but I can't quite figure this out. In the following code, how would I get TextArea1 to automatically grow in height and width when the window is resized while retaining its absolute X/Y position but not affecting TextField1?

<%@ Page Language="VB" %>

<%@ Register Assembly="Coolite.Ext.Web" Namespace="Coolite.Ext.Web" TagPrefix="ext" %>
<%@ Register Src="~/RequestLetterPanel.ascx" TagName="RequestLetterPanel" TagPrefix="uc" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<script runat="server">

</script>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <ext:ScriptManager ID="ScriptManager1" runat="server">
    </ext:ScriptManager>
        <ext:Window ID="RequestLetterDlg" runat="server" Title="New Request Letter" Modal="false" Show&#111;nload="true" Width="300" Height="200">
            <Body>
                <ext:AbsoluteLayout ID="AbsoluteLayout1" runat="server">
                    <ext:TextField ID="TextField1" runat="server" X="10" Y="20">
                    </ext:TextField>
                    <ext:TextArea ID="TextArea1" runat="server" X="50" Y="50" Height="100" Width="200">
                    </ext:TextArea>
                </ext:AbsoluteLayout>
            </Body>
        </ext:Window> 
    </form>
</body>
</html>