Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- 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>";
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement