﻿<?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?)  » 2 issues with the browse-dialog</title><generator>InstantForum 2017-1 Final</generator><description>StrataFrame Forum</description><link>http://forum.strataframe.net/</link><webMaster>StrataFrame Forum</webMaster><lastBuildDate>Wed, 29 Apr 2026 18:42:49 GMT</lastBuildDate><ttl>20</ttl><item><title>2 issues with the browse-dialog</title><link>http://forum.strataframe.net/FindPost22273.aspx</link><description>hi,&lt;/P&gt;&lt;P&gt;i got two issues with the browse dialog:&lt;/P&gt;&lt;P&gt;1) how do i set it up, so that instead of populating the business object with the selected search result, it would only navigate to the selected search result instead ?&lt;/P&gt;&lt;P&gt;2) the waitwindow message appearing while it performs the search&amp;nbsp;is not localized. (appears in english)&lt;/P&gt;&lt;P&gt;thanks.</description><pubDate>Wed, 30 Nov 2011 04:31:04 GMT</pubDate><dc:creator>Philipp Guntermann</dc:creator></item><item><title>RE: 2 issues with the browse-dialog</title><link>http://forum.strataframe.net/FindPost30669.aspx</link><description>Hi Hector.&lt;br/&gt;&lt;br/&gt;This hasn't made into the framework yet, but it certainly will.&lt;br/&gt;&lt;br/&gt;For the time being, if you would like it to be localized, you could make a small change in the framework, as I have done.&lt;br/&gt;&lt;br/&gt;First I created localization keys into my Message &amp;amp; Localization Project.&amp;nbsp; Then I added code into the BrowseDialogWindow's SetFormTextValues method, as follows:&lt;br/&gt;&lt;br/&gt;&lt;span&gt;[codesnippet]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ''' &amp;lt;summary&amp;gt;&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ''' Sets all of the forms text values (allows for localized values to be used)&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ''' &amp;lt;/summary&amp;gt;&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Private Sub SetFormTextValues()&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; '-- Establish Locals&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; Dim loCVT As New KeysConverter&lt;br/&gt;&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; With _BrowseDialog&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.lblStatus.Text = String.Format(.EnterSearchCriteraStatusText, "[" &amp;amp; loCVT.ConvertToString(.SearchKey) &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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.tsiSearch.Text = .SearchText&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.tsiClear.Text = .ClearText&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.cmdHideResults.Text = .HideResultsText&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.cmdSearchFields.Text = .SearchFieldsText&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.tscSearchFields.grpContent.Title = .SearchCriteriaText&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.chkAdvanced.Text = .AdvancedOptionsText&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.cmdOK.Text = .OKText&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Me.cmdCancel.Text = .CancelText&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; End With&lt;br/&gt;&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; '-- IGB - added on 2011/04/08 - START&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; '-- localize missing text key&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; Try&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MyWait&amp;#119;indow.Title = MicroFour.StrataFrame.UI.Localization.RetrieveTextValue("PFNT_MSG - BrowseDialogSearchingTitle")&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MyWait&amp;#119;indow.Message = MicroFour.StrataFrame.UI.Localization.RetrieveTextValue("PFNT_MSG - BrowseDialogSearchingMessage")&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; Catch ex As Exception&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; End Try&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; '-- IGB - added on 2011/04/08 - END&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End Sub&lt;br/&gt;[/codesnippet]&lt;/span&gt;&lt;br/&gt;&lt;br/&gt;Hope it helps. &lt;span&gt;;)&lt;/span&gt;</description><pubDate>Wed, 30 Nov 2011 04:31:04 GMT</pubDate><dc:creator>Ivan George Borges</dc:creator></item><item><title>RE: 2 issues with the browse-dialog</title><link>http://forum.strataframe.net/FindPost30668.aspx</link><description>Hi Trent,&lt;br/&gt;&lt;br/&gt;I am having the same difficulty for localizing the wait&amp;#119;indow. &lt;br/&gt;&lt;br/&gt;The last message seems to be on 2009, &lt;br/&gt;&lt;br/&gt;Could you please tell me if this is fixed with the new update and how can I localize it?</description><pubDate>Wed, 30 Nov 2011 01:02:09 GMT</pubDate><dc:creator>hector</dc:creator></item><item><title>RE: 2 issues with the browse-dialog</title><link>http://forum.strataframe.net/FindPost22331.aspx</link><description>Not yet.</description><pubDate>Thu, 12 Mar 2009 09:11:05 GMT</pubDate><dc:creator>Trent L. Taylor</dc:creator></item><item><title>RE: 2 issues with the browse-dialog</title><link>http://forum.strataframe.net/FindPost22325.aspx</link><description>Ok. Thanks.&lt;/P&gt;&lt;P&gt;Have you had a look on the missing localization ?</description><pubDate>Thu, 12 Mar 2009 06:49:06 GMT</pubDate><dc:creator>Philipp Guntermann</dc:creator></item><item><title>RE: 2 issues with the browse-dialog</title><link>http://forum.strataframe.net/FindPost22321.aspx</link><description>This is most likely not going to hapen within this release,&amp;nbsp;Philipp as it doesn't fall in line with the current design.&amp;nbsp; This is why we added the ReturnSeelctedRowOnly property to accomodate such needs.&amp;nbsp; Greg's commentary is good, but in any case, I hope this at least gives you an answer so you can move forward.&amp;nbsp; It was a good idea, but at the moment it is most likley not going to make it into the build.&amp;nbsp; We will keep it on the table for a later date.</description><pubDate>Wed, 11 Mar 2009 16:06:53 GMT</pubDate><dc:creator>Trent L. Taylor</dc:creator></item><item><title>RE: 2 issues with the browse-dialog</title><link>http://forum.strataframe.net/FindPost22320.aspx</link><description>Yeah, I understand.  I was just trying to point out that what you are doing is kind of running against the grain of how the BD works.  This may work great in your situation, but it wouldn't work well in many others.  I know I'm constantly attempting to reduce the trips to the database, reduce the amount of data returned, increase the efficiency of the queries I run because these all slow down the app.  Thus, I wouldn't want to requery the database to get data I already had, which is what you are doing (you have a BO that already contains all the records, then you use to BD to query the database and get some subset of those records again).  However, it may work fine for you, which is great.&lt;br&gt;
&lt;br&gt;
Also, I don't think your suggested code would work because you still need to set a BO to populate that isn't your primary BO (otherwise it will reload that BO and you'll loose all the records not found).  You might try to just sub-class the browse dialog, adding the desired functionality.  You might add a generic method to replace the [i]ShowDialog[/i] method that accepts the source BO and then does everything you need:&lt;br&gt;
&lt;br&gt;
[codesnippet]public class NavBrowseDialog : BrowseDialog&lt;br&gt;
{&lt;br&gt;
&amp;nbsp;&amp;nbsp;// Shows the browse dialog, populates a local BO (so the source BO&lt;br&gt;
&amp;nbsp;&amp;nbsp;// remains unchanged) and then navigates the source BO to the &lt;br&gt;
&amp;nbsp;&amp;nbsp;// selected record in the browse dialog.&lt;br&gt;
&amp;nbsp;&amp;nbsp;// Params:&lt;br&gt;
&amp;nbsp;&amp;nbsp;// boToNav:= source bo&lt;br&gt;
&amp;nbsp;&amp;nbsp;public DialogResult ShowDialogAndNav&amp;lt;T&amp;gt;(BusinessLayer boToNav) where T: BusinessLayer, new() &lt;br&gt;
&amp;nbsp;&amp;nbsp;{&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;T localBoToPopulate = new T;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;this.BusinessObjectToPopulate = localBoToPopulate; &lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if (this.ShowDialog() == DialogResult.OK &amp;&amp; localBoToPopulate.Count &gt; 0)&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;{&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;boToNav.NavigateToPrimaryKey(localBoToPopulate.Items[localBoToPopulate.PrimaryKey]);&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;br&gt;
&amp;nbsp;&amp;nbsp;}&lt;br&gt;
}[/codesnippet]&lt;br&gt;
&lt;br&gt;
I'm not sure that the generic is strictly needed, but I think you do, so your local BO is of the correct type.&lt;br&gt;
&lt;br&gt;
Now your code would be:&lt;br&gt;
&lt;br&gt;
[codesnippet]private void btnSearch_Click(object sender, EventArgs e)&lt;br&gt;
{&lt;br&gt;
&amp;nbsp;&amp;nbsp;KVbrowseDialog.MyShowDialog&amp;lt;Business_Objekte.Basis.KundenBO&amp;gt;();&lt;br&gt;
}[/codesnippet]</description><pubDate>Wed, 11 Mar 2009 15:46:12 GMT</pubDate><dc:creator>Greg McGuffey</dc:creator></item><item><title>RE: 2 issues with the browse-dialog</title><link>http://forum.strataframe.net/FindPost22319.aspx</link><description>Hi Greg,&lt;/P&gt;&lt;P&gt;the first codesnippet in my post above actually does exactly what i want. i was just hoping for a cleaner way to do it, without the requirement to instanciate a temporary bo.</description><pubDate>Wed, 11 Mar 2009 14:16:09 GMT</pubDate><dc:creator>Philipp Guntermann</dc:creator></item><item><title>RE: 2 issues with the browse-dialog</title><link>http://forum.strataframe.net/FindPost22317.aspx</link><description>Philipp,&lt;br&gt;
&lt;br&gt;
What you appear to want seems to be a bit more complicated than just getting the PK of the selected record.  As Ivan said, the BD is going to query the database. That is what is designed for.  However, since you have already pulled [i]all[/i] the records over, this isn't really that efficient.  It seems to me that what you want to do is to find the record within the existing set of data you've already pull over.&lt;br&gt;
&lt;br&gt;
Now, to use the BD to do this could get complicated.  You'd have to build a filter based on the search criterion in order to display the correct records, then return the selected record's PK so you could navigate to it in your BO.  This might be possible by handling the various events, but I'm not real confident that it could even be done.&lt;br&gt;
&lt;br&gt;
You might find it easier to just roll your own browse dialog, that simply looks up records within your prepopulated BO.</description><pubDate>Wed, 11 Mar 2009 12:39:43 GMT</pubDate><dc:creator>Greg McGuffey</dc:creator></item><item><title>RE: 2 issues with the browse-dialog</title><link>http://forum.strataframe.net/FindPost22303.aspx</link><description>i just think it could be a small addition to the browsedialog. and i think many people use it like that (have a form with a populated bo and then use browsedialog to enable a search).&lt;P&gt;it would turn this code:&lt;/P&gt;&lt;P&gt;[codesnippet]&lt;/P&gt;&lt;P&gt;private void btnSearch_Click(object sender, EventArgs e)&lt;BR&gt;{&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Business_Objekte.Basis.KundenBO ErgebnisBO = new Business_Objekte.Basis.KundenBO();&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; KVbrowseDialog.BusinessObjectToPopulate = ErgebnisBO;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (KVbrowseDialog.ShowDialog() == DialogResult.OK &amp;amp;&amp;amp; ErgebnisBO.Count &amp;gt; 0)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;this.KVkundenBO.NavigateToPrimaryKey(ErgebnisBO.ID);&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ErgebnisBO.Dispose();&lt;BR&gt;}&lt;/P&gt;&lt;P&gt;[/codesnippet]&lt;/P&gt;&lt;P&gt;into this much cleaner code:&lt;/P&gt;&lt;P&gt;[codesnippet]&lt;/P&gt;&lt;P&gt;private void btnSearch_Click(object sender, EventArgs e)&lt;BR&gt;{&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (KVbrowseDialog.ShowDialog() == DialogResult.OK &amp;amp;&amp;amp;&amp;nbsp;kvbrowseDialog.SelectedRowPK &amp;gt; 0)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.KVkundenBO.NavigateToPrimaryKey(kvbrowseDialog.SelectedRowPK);&lt;BR&gt;}&lt;/P&gt;&lt;P&gt;[/codesnippet]</description><pubDate>Wed, 11 Mar 2009 03:20:58 GMT</pubDate><dc:creator>Philipp Guntermann</dc:creator></item><item><title>RE: 2 issues with the browse-dialog</title><link>http://forum.strataframe.net/FindPost22298.aspx</link><description>[quote]imo that is not an optimal solution.[/quote]&lt;/P&gt;&lt;P&gt;OK, I guess we will just have to agree to disagree then! ;)&lt;/P&gt;&lt;P&gt;Since the BD is designed to search the database table, and not the BO, creating a second BO, just for the sake of the BD, wouldn't do any harm. And it would accomplish exactly what you are looking for.&lt;/P&gt;&lt;P&gt;Just my 0.02 ... which in "reais" are even cheaper! :D</description><pubDate>Tue, 10 Mar 2009 18:06:52 GMT</pubDate><dc:creator>Ivan George Borges</dc:creator></item><item><title>RE: 2 issues with the browse-dialog</title><link>http://forum.strataframe.net/FindPost22296.aspx</link><description>[quote][b]Ivan George Borges (03/10/2009)[/b][hr][quote]It fills the BO with the selected record, and then navigates there too. instead it should: leave the BO as it is (keep all records as they are) and ONLY navigate to the selected record. dont re-populate.[/quote]&lt;P&gt;Well, this can only be accomplished if you have all records already populated in the form's BO, otherwise, you run the risk of selecting a record that is not populated in it yet. Anyway, I guess that if you follow what Trent told you, you can still do it. Create a second BO, populate it through the BD, once you get out of the BD, get the primary key of the select record and navigate the form's BO to it. You can even add the selected record to the form's BO with a bit of coding, if it is not there yet.[/quote]&lt;P&gt;yes. i have the forms bo filled with all records. i was hoping i could use the browse-dialog to enable a search within theese and then have the bo being navigated to the selected record without having to create another bo. imo that is not an optimal solution. maybe i'll just relable the search button to "filter" or something, but i think the browsedialog should have a property of the selected pk that could be accessed directly&amp;nbsp;/ without having to create another bo.</description><pubDate>Tue, 10 Mar 2009 17:06:19 GMT</pubDate><dc:creator>Philipp Guntermann</dc:creator></item><item><title>RE: 2 issues with the browse-dialog</title><link>http://forum.strataframe.net/FindPost22294.aspx</link><description>[quote]It fills the BO with the selected record, and then navigates there too. instead it should: leave the BO as it is (keep all records as they are) and ONLY navigate to the selected record. dont re-populate.[/quote]&lt;/P&gt;&lt;P&gt;Well, this can only be accomplished if you have all records already populated in the form's BO, otherwise, you run the risk of selecting a record that is not populated in it yet. Anyway, I guess that if you follow what Trent told you, you can still do it. Create a second BO, populate it through the BD, once you get out of the BD, get the primary key of the select record and navigate the form's BO to it. You can even add the selected record to the form's BO with a bit of coding, if it is not there yet.</description><pubDate>Tue, 10 Mar 2009 15:36:34 GMT</pubDate><dc:creator>Ivan George Borges</dc:creator></item><item><title>RE: 2 issues with the browse-dialog</title><link>http://forum.strataframe.net/FindPost22284.aspx</link><description>[quote][b]Trent L. Taylor (03/10/2009)[/b][hr]&lt;P&gt;I am not sure that I follow you on this.&amp;nbsp; It actually does navigate to the selected record.&lt;/P&gt;&lt;P&gt;[/quote]&lt;/P&gt;&lt;P&gt;It fills the BO with the selected record, and then navigates there too. instead it should: leave the BO as it is (keep all records as they are) and ONLY navigate to the selected record. dont re-populate.</description><pubDate>Tue, 10 Mar 2009 09:56:37 GMT</pubDate><dc:creator>Philipp Guntermann</dc:creator></item><item><title>RE: 2 issues with the browse-dialog</title><link>http://forum.strataframe.net/FindPost22283.aspx</link><description>[quote] how do i set it up, so that instead of populating the business object with the selected search result, it would only navigate to the selected search result instead ?[/quote]&lt;/P&gt;&lt;P&gt;I am not sure that I follow you on this.&amp;nbsp; It actually does navigate to the selected record.&amp;nbsp; If you are wanting to update a BO other than the BusinessObjectToPopulate, then create a second BO on the for and set that to the BusinessObjectToPopulate, then in the BrowseDialogClosing (or where ever meets your needs) navigate the record on the other BO to which you are wanting to update.&lt;/P&gt;&lt;P&gt;[quote]2) the waitwindow message appearing while it performs the search&amp;nbsp;is not localized. (appears in english)[/quote]&lt;/P&gt;&lt;P&gt;Hmmm...OK, thanks.&amp;nbsp; I will look into this.</description><pubDate>Tue, 10 Mar 2009 09:08:36 GMT</pubDate><dc:creator>Trent L. Taylor</dc:creator></item></channel></rss>