i have this code :
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace ConsoleApplication2
{
class Program
{
static void Main(string args)
{
string TheFormText;
string TheFormName;
string TheFormTag;
Form activeForm = Form.ActiveForm;
TheFormText = activeForm.ActiveMdiChild.Text.ToString();
TheFormName = activeForm.ActiveMdiChild.Name.ToString();
try
{
TheFormTag = activeForm.ActiveMdiChild.Tag.ToString();
}
catch
{
TheFormTag = "<none>";
}
}
}
}
i try to run in but when i do i get this error An unhandled exception of type 'System.NullReferenceException' occurred in ConsoleApplication2.exe
in TheFormText = activeForm.ActiveMdiChild.Text.ToString();
can someone help me make it work ?