Well, this is the best I have came up with. And the best is that it don't crash

WARNING: This code is coded for 1900 x 1080 No Border screen.
So for your own, you need to change the Lines. (Marked with red in code.)
Remember to add the:
Code:
using System.Runtime.InteropServices;
Code:
[DllImport("user32.dll", EntryPoint = "FindWindow")]
public static extern IntPtr FindWindow(string lp1, string lp2);
IntPtr Handle = FindWindow(null, "WhatYouWant");
try
{
using (Graphics g = Graphics.FromHwnd(Handle))
{
Pen PN = new Pen(Brushes.Khaki, 2);
g.DrawLine(PN, 961, 520, 961, 560);
g.DrawLine(PN, 985, 540, 935, 540);
g.Dispose();
}
}
catch (Exception Ex)
{
MessageBox.Show(Ex.Message, "Error Message:", MessageBoxButtons.OK, MessageBoxIcon.Error);
MessageBox.Show("If you could be so nice to report this on the released site, it would be great.", "Ops:", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
Application.Exit();
}
Put it in a timer or add the for( ; ; )
Enjoy.
Image: (This is fake. Because the Cross-Hair don't show

)
