Hi
created testharness and ran dll from there using code below and it worked outside of slx so object it recognised
private void button1_Click(object sender, EventArgs e) { DatelSLXCustDial.EditKey EditKey = new DatelSLXCustDial.EditKey(); EditKey.SetConnectionDetails(txtServer.Text, txtDatabase.Text, txtUser.Text, txtPassword.Text, txtSchema.Text); EditKey.SetAccountID(txtAccountID.Text); EditKey.DoEdit(); }
only did regasm "c:\..\datelslxCustDial.dll" do i need to do anything else if work in test harness it must be registered ok for that to find it -no?
|