Can't add DLL reference?(Follow up)

左心房为你撑大大i 提交于 2019-12-08 12:24:52

问题


Follow up to This I have also read up on some other questions but am not understanding what would cause this to happen. Permissions? How to apply a work around? Whats LAME?

I was directed to THIS tutorial and have worked it into a C# program to execute on Button Clicks.

However I get a error on this line

[DllImport("ODBCCP32.dll")]

stating

The type or namespace name "DllImport" could not be found (are you missing a using directory or an assembly reference?)

I have tried inporting that file as a reference but am then hit with this error

"Please make sure file is accessile, and that it is a valid assembly or COM component"

Am I missing something that I need imported? Here is a section of my code.

using System;
using System.Runtime.InteropServices;

namespace DsnUtil{
public partial class Form1 : Form{
[DllImport("ODBCCP32.dll")]
private static extern bool SQLConfigDataSource(//etc etc)
public Form1(){
   button1_Click();
}

private void button1_Click(object sender, EventArgs e){
   //DoesWork
}
}

回答1:


It seemed that I just had some things confused. I was able to add the .dll as a Resource instead of a reference. I also assigned a new string resource as the name of the dll in case I would like to use it later.

All in all this is what worked.

namespace DSNUtility{

public partial class Form1 : Form{
[DllImport("odbccp32.dll")]
private static extern bool SQLConfigDataSource(IntPrt parent, int request, string driver, string attribute;

public form(){
InitializeComponent();
}

//Method to handle the creation(Will be called on a Button Click)
public bool AddUserDSN(){
return SQLConfigDataSource((IntPrt)0, 1, "SQL Server",
"DSN=Testing123\0Description=Testing123\0Network=blahblah\0Trusted_Connection=No\0Server=blahblahblah\0Database=XXXXXX\0");
}

private void Form1_Load(object sender, EventArgs e){
    }

private void button1_Click(object sender, EventArgs e){
//Call the Add User Method   
AddUserDSN();
}   
}


来源:https://stackoverflow.com/questions/6628519/cant-add-dll-referencefollow-up

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!