hi,
i tried to register a dll(i did it), and i get the "not entry point found dllregisterserver".
i looked for information, and well, i think i have to do this function by my own, is this correct? but i don't know what have to do that function, any help?
i know vb6 creates this functions automatically, there's any way to see sample code of this? by the way, i'm using visual studio 2005 c#
thanks in advance.
Loading
Kirtan PatelPosted Oct 29, 2008, 8:51 AM
Here is Screen Shot of It
private void button1_Click(object sender, EventArgs e)
{
OpenFileDialog ofd = new OpenFileDialog();
if (ofd.ShowDialog() == DialogResult.OK)
{
String Filename = ofd.FileName;
textBox1.Text = Filename;
}
}
private void button2_Click(object sender, EventArgs e)
{
if (textBox1.Text == "")
{
MessageBox.Show("Select DLL File ");
}
else
{
Process p = new Process();
p.StartInfo.FileName = "Regsvr32.exe";
p.StartInfo.Arguments = textBox1.Text.Trim();
p.Start();
}
}
Happy Coding :)