The following works until I modify the design of the region in the Designer 
 
at which point the designer naturally overwrites my code. No doubt that's 
 
why it says "Required method for Designer support - do not modify ". 
 
I wonder if anyone has any examples then of how I would modify the XML file 
 
directly. I would need to put the result of a method call to get the dynamic 
 
text, that is, in this case, FText.GetText(1298). 
 
#region Form Region Designer generated code 
 
/// <summary 
/// Required method for Designer support - do not modify 
 
/// the contents of this method with the code editor. 
 
/// </summary 
private static void 
 
InitializeManifest(Microsoft.Office.Tools.Outlook.FormRegionManifest 
 
manifest) 
 
{ 
 
manifest.FormRegionType = 
 
Microsoft.Office.Tools.Outlook.FormRegionType.Adjoining; 
 
manifest.ShowInspectorCompose = false; 
 
manifest.ShowInspectorRead = false; 
 
manifest.Title = "My Static Title"; 
 
manifest.Title = FText.GetText(1298); 
 
} 
 
#endregion 
 <kenslovak@mvps.org> wrote in message 
 
news:uDrFsyATKHA.4020@TK2MSFTNGP05.phx.gbl... 
> I don't believe you can, other than changing the XML before it's supplied 
> to the handler. 
 
>  >  
 
>  
 
>  "Mark B" <none123@none.com> wrote in message 
>  news:%23tTaqJ9SKHA.5164@TK2MSFTNGP02.phx.gbl... 
> > OL2007, VSTO C#. 
> 
 
>> Does anyone know how to change the Title of a form region at runtime? 
>