/* Recupera Coordinate X,Y del Click Mouse da ripetere */ private void BtnBookmark_Click(object sender, EventArgs e) { Point poit = AutoIt.AutoItX.MouseGetPos(); m_intX_1 = poit.X; m_intY_1 = poit.Y; this.Query.Enabled = false; BtnBookmark.Enabled = false; frm = new frmInfoMouse(m_intX_1, m_intY_1); frm.Show(); }
/* Recupera Coordinate X,Y del Click Mouse da ripetere */ private void BtnBookmark_Click(object sender, EventArgs e) { Point poit = AutoIt.AutoItX.MouseGetPos(); m_intX_1 = poit.X; m_intY_1 = poit.Y; //this.Query.BackgroundImage this.Query.Enabled = false; BtnBookmark.Enabled = false; toolStripStatusLabel1.Text = "DOPO AVER ACQUISITO EVENTO MOUSE CLICCA SULLA FINESTRA EDITOR ... "; frm = new frmInfoMouse(m_intX_1, m_intY_1); frm.Show(); }