D
Diego Armando Maradona
I have "MyProject.Commons.frmMessageBox"
if I wanna create it, doing this,
using (MyProject.Commons.frmMessageBox xFrm = new
MyProject.Commons.frmMessageBox())
{
xFrm.ShowDialog();
}
if I do not know "MyProject.Commons.frmMessageBox" is available or not and
want to handle this situation like this
if (Available("MyProject.Commons.frmMessageBox"))
{
ShowCustomDialog("MyProject.Commons.frmMessageBox");
}
This is possible ?
if I wanna create it, doing this,
using (MyProject.Commons.frmMessageBox xFrm = new
MyProject.Commons.frmMessageBox())
{
xFrm.ShowDialog();
}
if I do not know "MyProject.Commons.frmMessageBox" is available or not and
want to handle this situation like this
if (Available("MyProject.Commons.frmMessageBox"))
{
ShowCustomDialog("MyProject.Commons.frmMessageBox");
}
This is possible ?