Hi Trent, thanks for your reply.
Item 1.
My GradientFormHeader is still forgetting it's Title property. Note that this is a StrataFrame Inherited GradientFormHeader on an SF DevEx Maintenance Form. I have rebuilt the form from scratch a number of times, and always at some point the Title property comes unstuck and remains so. The problem does not occur with a standard GradientFormHeader and an SF Maintenance Form.
I believe you that its not a bug in GradientFormHeader. Maybe its some subtle interaction with DevEx.

I don't have the time to dig into it in detail at the moment, so I will continue with my previous work around.
Items 2. & 3.
When you say "...ultimately an integer value", this implies to me that the type of your underlying field is an integer rather than a boolean. My underlying field is a System.Boolean, so my Enum named constants must convert to strings that can be parsed by System.Boolean, i.e. True and False. I wouldn't expect named constants of Yes and No to work with a boolean field (although I prefer them to True and False for presenting to the user).
So I created an Enum with True and False named constants, and successfully hooked it up to my search fields in my browseDialog. Everything displays correctly, and the selections in the combo boxes work fine. When I hit enter to do the search, however, I get the following exception:
FormatException
String was not recognized as a valid Boolean.
Source : mscorlib
Stack Trace:
at System.Boolean.Parse(String value)
at MicroFour.StrataFrame.UI.Windows.Forms.DevEx.BrowseDialogWindow.BuildWhereElement(Int32 ParameterIndex)
at MicroFour.StrataFrame.UI.Windows.Forms.DevEx.BrowseDialogWindow.BuildSearchWhereClause()
at MicroFour.StrataFrame.UI.Windows.Forms.DevEx.BrowseDialogWindow.Search()
at MicroFour.StrataFrame.UI.Windows.Forms.DevEx.BrowseDialogWindow.ExecuteSearch()
at MicroFour.StrataFrame.UI.Windows.Forms.DevEx.BrowseDialogWindow.HandleKeyDown(Object Sender, KeyEventArgs e)
at System.Windows.Forms.Control.OnKeyDown(KeyEventArgs e)
at System.Windows.Forms.ComboBox.OnKeyDown(KeyEventArgs e)
at System.Windows.Forms.Control.ProcessKeyEventArgs(Message& m)
at System.Windows.Forms.ComboBox.ProcessKeyEventArgs(Message& m)
at System.Windows.Forms.Control.ProcessKeyMessage(Message& m)
at System.Windows.Forms.Control.WmKeyChar(Message& m)
at System.Windows.Forms.Control.WndProc(Message& m)
at System.Windows.Forms.ComboBox.WndProc(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
I don't know what I'm doing wrong here. Is there a way to make it work with boolean fields, or do I need to convert any database boolean fields that I want to search on to integers?
Item 4.

Oops! Didn't see that particular tree for the rest of the forest. Thanks for your patience with dumb questions.
Item 5.

Ah! I've been opening the StrataFrame Documentation from the Start|All Programs|MicroFour StrataFrame menu. No index that way. I've been doing this so that I can have StrataFrame help in one window and VS2005 help in another, and just click between the two without losing my place in either. If I filter the VS2005 help by StrataFrame, there's the index.
Item 6.
OK, I'll give that a go late next week after my next demo to my client. Is there a list somewhere of new stuff we can expect in v1.5?
Regards,
Bruce