i am trying to convert the following code to vb.net but online converters return error. Could any body help please?
JohnKenedy.BusinessSQLEXPRInstaller _ins = new JohnKenedy.BusinessSQLEXPRInstaller(
"<Installation Display Name>", "localhost",
"<New database instance name>", "<new database name>", "<database password>",
"<database backup filename>");
if (_ins.IsDone == false) _ins.ShowDialog();
if (_ins.IsRestart == true)
{
Application.Exit();
this.Close();
return;
}
For what it’s worth those code converters usually want you to have the code in a class, not just some code stub.