﻿<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>StrataFrame Forum » StrataFrame Application Framework - V1 » WinForms (How do I?)  » Subclassing BrowseDialog</title><generator>InstantForum 2017-1 Final</generator><description>StrataFrame Forum</description><link>http://forum.strataframe.net/</link><webMaster>StrataFrame Forum</webMaster><lastBuildDate>Thu, 28 May 2026 10:23:34 GMT</lastBuildDate><ttl>20</ttl><item><title>Subclassing BrowseDialog</title><link>http://forum.strataframe.net/FindPost18093.aspx</link><description>Hi,&lt;P&gt;I've subclassed BrowseDialog (only for purpose of localization, because yours is so so uggly :sick: ;) )&lt;/P&gt;&lt;P&gt;when launching, I get an error:&lt;/P&gt;&lt;P&gt;[codesnippet]26/07/2008 16:18:54&lt;BR&gt;L'index était hors limites. Il ne doit pas être négatif et doit être inférieur à la taille de la collection.&lt;BR&gt;Nom du paramètre&amp;nbsp;: index&lt;BR&gt;&amp;nbsp;&amp;nbsp; à System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)&lt;BR&gt;&amp;nbsp;&amp;nbsp; à System.ThrowHelper.ThrowArgumentOutOfRangeException()&lt;BR&gt;&amp;nbsp;&amp;nbsp; à MicroFour.StrataFrame.UI.Windows.Forms.BrowseDialog&amp;#119;indow.SetGroupBoxDimensions()&lt;BR&gt;&amp;nbsp;&amp;nbsp; à MicroFour.StrataFrame.UI.Windows.Forms.BrowseDialog&amp;#119;indow..ctor(BrowseDialog browse, Boolean PopulateOnShow)&lt;BR&gt;&amp;nbsp;&amp;nbsp; à MicroFour.StrataFrame.UI.Windows.Forms.BrowseDialog.ShowDialog(Boolean PopulateOnShow, IWin32Window ResultsWindowOwner)&lt;BR&gt;&amp;nbsp;&amp;nbsp; à MicroFour.StrataFrame.UI.Windows.Forms.BrowseDialog.ShowDialog(Boolean PopulateOnShow)&lt;BR&gt;&amp;nbsp;&amp;nbsp; à MicroFour.StrataFrame.UI.Windows.Forms.BrowseDialog.ShowDialog()&lt;BR&gt;&amp;nbsp;&amp;nbsp; à MicroFour.StrataFrame.UI.Windows.Forms.MaintenanceFormToolStrip.cmdBrowse_Click(Object sender, EventArgs e)&lt;BR&gt;&amp;nbsp;&amp;nbsp; à System.Windows.Forms.ToolStripItem.RaiseEvent(Object key, EventArgs e)&lt;BR&gt;&amp;nbsp;&amp;nbsp; à System.Windows.Forms.ToolStripButton.OnClick(EventArgs e)&lt;BR&gt;&amp;nbsp;&amp;nbsp; à System.Windows.Forms.ToolStripItem.HandleClick(EventArgs e)&lt;BR&gt;&amp;nbsp;&amp;nbsp; à System.Windows.Forms.ToolStripItem.HandleMouseUp(MouseEventArgs e)&lt;BR&gt;&amp;nbsp;&amp;nbsp; à System.Windows.Forms.ToolStripItem.FireEventInteractive(EventArgs e, ToolStripItemEventType met)&lt;BR&gt;&amp;nbsp;&amp;nbsp; à System.Windows.Forms.ToolStripItem.FireEvent(EventArgs e, ToolStripItemEventType met)&lt;BR&gt;&amp;nbsp;&amp;nbsp; à System.Windows.Forms.ToolStrip.OnMouseUp(MouseEventArgs mea)&lt;BR&gt;&amp;nbsp;&amp;nbsp; à System.Windows.Forms.Control.WmMouseUp(Message&amp;amp; m, MouseButtons button, Int32 clicks)&lt;BR&gt;&amp;nbsp;&amp;nbsp; à System.Windows.Forms.Control.WndProc(Message&amp;amp; m)&lt;BR&gt;&amp;nbsp;&amp;nbsp; à System.Windows.Forms.ScrollableControl.WndProc(Message&amp;amp; m)&lt;BR&gt;&amp;nbsp;&amp;nbsp; à System.Windows.Forms.ToolStrip.WndProc(Message&amp;amp; m)&lt;BR&gt;&amp;nbsp;&amp;nbsp; à System.Windows.Forms.Control.ControlNative&amp;#119;indow.OnMessage(Message&amp;amp; m)&lt;BR&gt;&amp;nbsp;&amp;nbsp; à System.Windows.Forms.Control.ControlNative&amp;#119;indow.WndProc(Message&amp;amp; m)&lt;BR&gt;&amp;nbsp;&amp;nbsp; à System.Windows.Forms.Native&amp;#119;indow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)&lt;BR&gt;[/codesnippet]&lt;/P&gt;&lt;P&gt;my localisation are:&lt;/P&gt;&lt;P&gt;[codesnippet]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.ClearText = "Effacer le résultat"&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.DownText = "Descendre"&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.EnterSearchCriteraStatusText = "Saisissez vos critères de recherche et appuyez sur {0} pour commencer la recherch" &amp;amp; _&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "e"&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.ForceCaseInsensitive = True&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.HeaderDetailText = "Entrez les critères de recherche ci-dessous pour trouver les enregistrements dési" &amp;amp; _&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "rés."&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.HeaderImage = Global.MLControlesSF.My.Resources.Resources.Explorer32&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.HeaderTitle = "Que voulez-vous chercher?"&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.LedgerCardColor2 = System.Drawing.Color.Gainsboro&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.OKText = "&amp;amp;Valider"&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.ResultsHiddenOnLoad = True&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.ResultsStatusText = "{0} résultats ont été trouvés en {1} seconde(s)"&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.SaveText = "Valider"&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.SearchFieldDownTooltip = "Déplacer le champ de recherche sélectionné vers le bas"&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.SearchFieldResetTooltip = "Réinitialiser le choix et l'ordre des champs de recherche aux valeurs par défaut"&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.SearchFieldSaveTooltip = "Valide vos choix de champs et reprend la recherche"&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.SearchFieldUpTooltip = "Déplacer le champ de recherche sélectionné vers le haut"&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.SetFocusToResultsAfterSearch = True&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.UpText = "Monter"&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.ViewResultsAsLedgerCard = True[/codesnippet]&lt;/P&gt;&lt;P&gt;Sure I miss something in subclassing, but what? and where?</description><pubDate>Tue, 29 Jul 2008 12:02:06 GMT</pubDate><dc:creator>Michel Levy</dc:creator></item><item><title>RE: Subclassing BrowseDialog</title><link>http://forum.strataframe.net/FindPost18198.aspx</link><description>Thanks again for all your advice</description><pubDate>Tue, 29 Jul 2008 12:02:06 GMT</pubDate><dc:creator>Michel Levy</dc:creator></item><item><title>RE: Subclassing BrowseDialog</title><link>http://forum.strataframe.net/FindPost18196.aspx</link><description>Yup, that is by design.</description><pubDate>Tue, 29 Jul 2008 11:01:03 GMT</pubDate><dc:creator>Trent L. Taylor</dc:creator></item><item><title>RE: Subclassing BrowseDialog</title><link>http://forum.strataframe.net/FindPost18195.aspx</link><description>OK Trent,&lt;/P&gt;&lt;P&gt;now I understand my errors:&lt;BR&gt;the 3 properties BusinessObjectType, SearchFields, BrowseResultsLayout must be set from within the class&amp;nbsp;itself, and not from the form in design mode.&lt;/P&gt;&lt;P&gt;all attempts to reset these properties in form design mode are without any result, only class-set properties are saved.&lt;/P&gt;&lt;P&gt;If it's "by design", let me use it as it is...</description><pubDate>Tue, 29 Jul 2008 10:54:00 GMT</pubDate><dc:creator>Michel Levy</dc:creator></item><item><title>RE: Subclassing BrowseDialog</title><link>http://forum.strataframe.net/FindPost18168.aspx</link><description>Here is a sample that has a sub-classes browse dialog.&amp;nbsp; It was created just as my explanation above mentioned.&amp;nbsp; So if you are getting errors on this sample, then you do not have the most recent version loaded or still have old assemblies that are being referenced.</description><pubDate>Tue, 29 Jul 2008 08:45:43 GMT</pubDate><dc:creator>Trent L. Taylor</dc:creator></item><item><title>RE: Subclassing BrowseDialog</title><link>http://forum.strataframe.net/FindPost18167.aspx</link><description>Hi Michel,&lt;/P&gt;&lt;P&gt;Just to make sure, check out the version of the SF libraries, by clicking the StrataFrame menu -&amp;gt;Version, they all should be 1.6.5.3</description><pubDate>Tue, 29 Jul 2008 08:01:35 GMT</pubDate><dc:creator>Edhy Rijo</dc:creator></item><item><title>RE: Subclassing BrowseDialog</title><link>http://forum.strataframe.net/FindPost18162.aspx</link><description>I've downloaded and installed the last version (from your link), and still have the same issue:&lt;/P&gt;&lt;P&gt;3 properties of the subclassed browsedialog don't stay as I set them - BusinessObjectType, SearchFields, and BrowseResultsLayout.&lt;/P&gt;&lt;P&gt;I set those properties as needed from within the properties sheet of the form, then I save my form, and when I open this form again, those 3 properties are reset with blank.&lt;/P&gt;&lt;P&gt;Of course, I notice the same missing properties in debugger when setting a breakpoint inth form.shown event</description><pubDate>Tue, 29 Jul 2008 06:11:31 GMT</pubDate><dc:creator>Michel Levy</dc:creator></item><item><title>RE: Subclassing BrowseDialog</title><link>http://forum.strataframe.net/FindPost18144.aspx</link><description>Sounds like you need to get the latest version of SF.&amp;nbsp; This is already done.&amp;nbsp; You can get it here: &lt;A href="http://forum.strataframe.net/FindPost18055.aspx"&gt;http://forum.strataframe.net/FindPost18055.aspx&lt;/A&gt;&amp;nbsp;.&amp;nbsp; In fact, I think that this was done back in 1.6.5, but I know for a fact that it is in 1.6.6 since this is what we are running at present.</description><pubDate>Mon, 28 Jul 2008 15:53:20 GMT</pubDate><dc:creator>Trent L. Taylor</dc:creator></item><item><title>RE: Subclassing BrowseDialog</title><link>http://forum.strataframe.net/FindPost18137.aspx</link><description>Trent,&lt;/P&gt;&lt;P&gt;I have created a new subclased BrowseDialog, exactly as you mentionned (new component in my controls library project, and simply add the inherintance in the class definition, without modifying any property)&lt;/P&gt;&lt;P&gt;I compile that project, then I go in my app project, add this new browsedialog in the toolbox, add it to a form, configure this browsedialog, setting it as browsedialog in the toolstrip&lt;/P&gt;&lt;P&gt;and crash again when clicking on the browse button!&lt;/P&gt;&lt;P&gt;same error:&amp;nbsp;what does " &lt;STRONG&gt;MicroFour.StrataFrame.UI.Windows.Forms.BrowseDialog&amp;#119;indow.SetGroupBoxDimensions()"&lt;/STRONG&gt; references to, in the error message?&lt;/P&gt;&lt;P&gt;I also notice that the properties set on that browsedialog (i.e BusinessObjectType, SearchFields, BrowseResultsLayout) &lt;STRONG&gt;are reset as empty&lt;/STRONG&gt;&amp;nbsp;after launching that form (even without showing the browsedialog itself).&lt;/P&gt;&lt;P&gt;Thank you for all your advices.</description><pubDate>Mon, 28 Jul 2008 15:21:21 GMT</pubDate><dc:creator>Michel Levy</dc:creator></item><item><title>RE: Subclassing BrowseDialog</title><link>http://forum.strataframe.net/FindPost18130.aspx</link><description>This is actually standard .NET in regards to the component.&amp;nbsp; If you will do as I mentioned in the previous post, I promise that it will work.&amp;nbsp; I have done this dozens of times in the last two weeks alone!&amp;nbsp; You are welcome to post a sample reproducing your problem.&amp;nbsp; That might make it easier to determine your issue versus going back and forth over the forum.&amp;nbsp; Thanks.</description><pubDate>Mon, 28 Jul 2008 14:16:33 GMT</pubDate><dc:creator>Trent L. Taylor</dc:creator></item><item><title>RE: Subclassing BrowseDialog</title><link>http://forum.strataframe.net/FindPost18114.aspx</link><description>No, not so fine... me.component is automaticaly added&amp;nbsp;when drag and drop from the toolbox, but still the same error raised again now.&lt;/P&gt;&lt;P&gt;definitely I misunderstood something...</description><pubDate>Mon, 28 Jul 2008 08:27:49 GMT</pubDate><dc:creator>Michel Levy</dc:creator></item><item><title>RE: Subclassing BrowseDialog</title><link>http://forum.strataframe.net/FindPost18113.aspx</link><description>Hi,&lt;P&gt;going on my tests, I've found that adding a SF original browsedialog by drag and drop from toolbox on a form generates that code in myform.Designer.vb:&lt;BR&gt;[codesnippet]Me.BrowseDialog1 = New MicroFour.StrataFrame.UI.Windows.Forms.BrowseDialog(Me.components)[/codesnippet], &lt;BR&gt;whereas dropping my own subclassed browsedialog generates :&lt;BR&gt;[codesnippet]Me.MlsF_BrowseDialog1 = New MLControlesSF.MLSF_BrowseDialog[/codesnippet]&lt;/P&gt;&lt;P&gt;Reading again your source code, I can see such a method new(byval container ...). So Iv'e added the same method in my own subclassed browsedialog.&lt;/P&gt;&lt;P&gt;Now, if I modify in myform.Designer.vb the line that create the BrowseDialog, adding me.components as a parameter), all run fine.&lt;/P&gt;&lt;P&gt;Is there any way to do that correctly (without writing in designer.vb)?</description><pubDate>Mon, 28 Jul 2008 07:40:02 GMT</pubDate><dc:creator>Michel Levy</dc:creator></item><item><title>RE: Subclassing BrowseDialog</title><link>http://forum.strataframe.net/FindPost18106.aspx</link><description>Trent,&lt;P&gt;I've done exactly what you say, for subclassing a browsedialog (as I have done for sublcasing other components without problems)&lt;/P&gt;&lt;P&gt;I tried to set the localised strings in the designer, -&amp;gt; error when I attempt to showdialog this browsedialog, I tried to set in the sub new, same error again, then I tried in the Initializecomponent, ad again the same error&lt;/P&gt;&lt;P dir=ltr style="MARGIN-RIGHT: 0px"&gt;[codesnippet]&lt;BR&gt;&lt;FONT color=#0000ff size=2&gt;Public&lt;/FONT&gt;&lt;FONT color=#000000 size=2&gt; &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;Class&lt;/FONT&gt;&lt;FONT size=2&gt;&lt;FONT color=#000000&gt; MLSF_BrowseDialog&lt;BR&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Inherits&lt;/FONT&gt;&lt;FONT size=2&gt; MicroFour.StrataFrame.UI.Windows.Forms.BrowseDialog&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE dir=ltr style="MARGIN-RIGHT: 0px"&gt;&lt;P&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;Public&lt;/FONT&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;Sub&lt;/FONT&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;New&lt;/FONT&gt;&lt;FONT size=2&gt;()&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;MyBase&lt;/FONT&gt;&lt;FONT size=2&gt;.New()&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#008000 size=2&gt;' Cet appel est requis par le Concepteur Windows Form.&lt;BR&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;InitializeComponent()&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#008000 size=2&gt;' Ajoutez une initialisation quelconque après l'appel InitializeComponent().&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;End&lt;/FONT&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;Sub&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;End&lt;/FONT&gt;&lt;FONT color=#000000 size=2&gt; &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;Class&lt;BR&gt;&lt;/FONT&gt;[/codesnippet]&lt;/P&gt;&lt;P&gt;The french error messages says "Index out of range. Index must not be less than 0, and less than collection count" (not sure of my translation for count, it refers to the number of items of the collection)&lt;/P&gt;&lt;P&gt;Below&amp;nbsp;are the french translations for BrowseDialog:&lt;BR&gt;[codesnippet]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.ClearText = "Effacer le résultat"&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.DownText = "Descendre"&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.EnterSearchCriteraStatusText = "Saisissez vos critères de recherche et appuyez sur {0} pour commencer la recherch" &amp;amp; _&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "e"&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.HeaderTitle = "Que voulez-vous chercher?"&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.OKText = "&amp;amp;Valider"&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.ResultsStatusText = "{0} résultats ont été trouvés en {1} seconde(s)"&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.SaveText = "Valider"&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.SearchFieldDownTooltip = "Déplacer le champ de recherche sélectionné vers le bas"&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.SearchFieldResetTooltip = "Réinitialiser le choix et l'ordre des champs de recherche aux valeurs par défaut"&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.SearchFieldSaveTooltip = "Valide vos choix de champs et reprend la recherche"&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.SearchFieldUpTooltip = "Déplacer le champ de recherche sélectionné vers le haut"&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.SetFocusToResultsAfterSearch = True&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.UpText = "Monter"&lt;BR&gt;[/codesnippet]&lt;/P&gt;&lt;P&gt;Next week, I'll send you all French translations that need to be corrected.</description><pubDate>Sun, 27 Jul 2008 05:31:28 GMT</pubDate><dc:creator>Michel Levy</dc:creator></item><item><title>RE: Subclassing BrowseDialog</title><link>http://forum.strataframe.net/FindPost18101.aspx</link><description>I am not sure what the French message is saying, but to subclass a BrowseDialog, do this:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Right-click the project and click Add New Item&lt;/LI&gt;&lt;LI&gt;Select a Component&lt;/LI&gt;&lt;LI&gt;Give it the name and then click Save (or OK)&lt;/LI&gt;&lt;LI&gt;Open up the designer of the new component and change the inheritance to a MicroFour.StrataFrame.UI.Windows.Forms.BrowseDialog.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;That will subclass the BrowseDialog for you and then everything will show up and be plumbed correctly.&lt;/P&gt;&lt;P&gt;In regards to the translations, why don't you just let me send you the French translations, you translate them the way you think they should be, send them back to me, and then I will update the framework.</description><pubDate>Sat, 26 Jul 2008 20:31:02 GMT</pubDate><dc:creator>Trent L. Taylor</dc:creator></item></channel></rss>