CHAMAR TELA DE PROPRIEDADES DE ASSOCIACAO DE DADOS
Boa noite amigos!
Alguém sabe se tem como chamar a tela em anexo pelo c# e retornar a string de conexao??
Alguém sabe se tem como chamar a tela em anexo pelo c# e retornar a string de conexao??
Galera consegui,
Para conhecimento de todos
Adicione as seguintes referencias COM no projeto
Microsoft ActiveX Data Objetcts 2.7
Microsoft OLEDB Service Component 1.0 Type Library
Pra chamar a caixa:
MSDASC.DataLinks mydlg = new MSDASC.DataLinks();
ADODB._Connection ADOcon;
//Cast the generic object that PromptNew returns to an ADODB._Connection.
ADOcon = (ADODB._Connection) mydlg.PromptNew();
ADOcon.Open([Ô][Ô],[Ô][Ô],[Ô][Ô],0);
if (ADOcon.State == 1) {
MessageBox.Show([Ô]Connection Opened[Ô]);
ADOcon.Close();
}
else {
MessageBox.Show([Ô]Connection Failed[Ô]);
}
REFERENCIA:http://bytes.com/topic/c-sharp/answers/248946-connection-string-dialog
Para conhecimento de todos
Adicione as seguintes referencias COM no projeto
Microsoft ActiveX Data Objetcts 2.7
Microsoft OLEDB Service Component 1.0 Type Library
Pra chamar a caixa:
MSDASC.DataLinks mydlg = new MSDASC.DataLinks();
ADODB._Connection ADOcon;
//Cast the generic object that PromptNew returns to an ADODB._Connection.
ADOcon = (ADODB._Connection) mydlg.PromptNew();
ADOcon.Open([Ô][Ô],[Ô][Ô],[Ô][Ô],0);
if (ADOcon.State == 1) {
MessageBox.Show([Ô]Connection Opened[Ô]);
ADOcon.Close();
}
else {
MessageBox.Show([Ô]Connection Failed[Ô]);
}
REFERENCIA:http://bytes.com/topic/c-sharp/answers/248946-connection-string-dialog
Tópico encerrado , respostas não são mais permitidas