<?xml version="1.0" encoding="utf-8"?>
<feed xml:lang="en" xmlns="http://www.w3.org/2005/Atom"><title>Recent changes to support-requests</title><link href="https://sourceforge.net/p/dataaide/support-requests/" rel="alternate"/><link href="https://sourceforge.net/p/dataaide/support-requests/feed.atom" rel="self"/><id>https://sourceforge.net/p/dataaide/support-requests/</id><updated>2006-04-26T21:51:11Z</updated><subtitle>Recent changes to support-requests</subtitle><entry><title>Allow inserting a db instance name in "compare" mode</title><link href="https://sourceforge.net/p/dataaide/support-requests/1/" rel="alternate"/><published>2006-04-26T21:51:11Z</published><updated>2006-04-26T21:51:11Z</updated><author><name>Anonymous</name><uri>https://sourceforge.net/u/userid-None/</uri></author><id>https://sourceforge.net849a866ea066d623609097c559cf996332da9aec</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;The project is very nice.&lt;br /&gt;
However, it seems to lack some support when the user &lt;br /&gt;
wishes to manually write a server instance name in &lt;br /&gt;
the "compare" mode.&lt;br /&gt;
The main problem is caused because sometimes the &lt;br /&gt;
SQLDMO.Application does not list all available &lt;br /&gt;
servers. In addition, the user might want to set the &lt;br /&gt;
instance name manually, when it is not in the local &lt;br /&gt;
network (or not in the local machine).&lt;br /&gt;
To solve the issue, I suggest changing the code in the &lt;br /&gt;
ToolBar1_ButtonClick event (in frmDBCompare.vb, &lt;br /&gt;
located in DataBaseComparer folder) as follows:&lt;br /&gt;
Instead of:&lt;br /&gt;
''''begin''''&lt;br /&gt;
If cboServer1.SelectedIndex &amp;gt; -1 And &lt;br /&gt;
cboServer2.SelectedIndex &amp;gt; -1 Then&lt;br /&gt;
''''end''''&lt;/p&gt;
&lt;p&gt;Replace with:&lt;br /&gt;
''''begin''''&lt;br /&gt;
If (cboServer1.Text.Length &amp;lt;&amp;gt; 0) And &lt;br /&gt;
(cboServer2.Text.Length &amp;lt;&amp;gt; 0) Then&lt;br /&gt;
''''end''''&lt;/p&gt;
&lt;p&gt;And in the design view, change each combo's &lt;br /&gt;
DropDownStyle property to "DropDown" (instead &lt;br /&gt;
of "DropDownList")&lt;/p&gt;&lt;/div&gt;</summary></entry></feed>