Control for Sql Connection?

S

someone

Hi all,
I need to let the users of my windows app select the Sql Server and
database they want to connect to and enter their Sql userid and password. Is
there a control available either in Visual Studio 2005 or by any third party
vendors to do this?

Thanks in advance.
 
N

Nicholas Paldino [.NET/C# MVP]

someone,

There is a dialog that VS.NET uses for SQL Server connections, but it is
a part of VS.NET 2005, and not really for distribution (using it is a little
bit of a hack).

You might be better off just creating a control which gets the
appropriate information from the user and then working with that.

Hope this helps.
 
S

someone

Thanks for your reply.
If I develop a VBA application in Excel instead of a Windows app, is
there a way to use the VS.Net dialog for Sql connections without hacks?

Nicholas Paldino said:
someone,

There is a dialog that VS.NET uses for SQL Server connections, but it
is a part of VS.NET 2005, and not really for distribution (using it is a
little bit of a hack).

You might be better off just creating a control which gets the
appropriate information from the user and then working with that.

Hope this helps.


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

someone said:
Hi all,
I need to let the users of my windows app select the Sql Server and
database they want to connect to and enter their Sql userid and password.
Is there a control available either in Visual Studio 2005 or by any third
party vendors to do this?

Thanks in advance.
 
N

Nicholas Paldino [.NET/C# MVP]

someone,

No, there isn't. It's not a function of whether or not you use VBA, but
the assembly that the dialog is located in.


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

someone said:
Thanks for your reply.
If I develop a VBA application in Excel instead of a Windows app, is
there a way to use the VS.Net dialog for Sql connections without hacks?

Nicholas Paldino said:
someone,

There is a dialog that VS.NET uses for SQL Server connections, but it
is a part of VS.NET 2005, and not really for distribution (using it is a
little bit of a hack).

You might be better off just creating a control which gets the
appropriate information from the user and then working with that.

Hope this helps.


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

someone said:
Hi all,
I need to let the users of my windows app select the Sql Server and
database they want to connect to and enter their Sql userid and
password. Is there a control available either in Visual Studio 2005 or
by any third party vendors to do this?

Thanks in advance.
 
D

_DD

someone,

There is a dialog that VS.NET uses for SQL Server connections, but it is
a part of VS.NET 2005, and not really for distribution (using it is a little
bit of a hack).

You might be better off just creating a control which gets the
appropriate information from the user and then working with that.

Nicholas (and anyone else who knows about this):

I've been trying to find out more about using that dialog (MSDASC or
adodb if memory serves) from within VS2005. It seemed to work OK with
earlier versions of VS.

I've also found that it's useful for confirming/testing connections
even when the connect string is generated by other means.

I thought that it had been modelled in a new control?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top