how can i check what monitor my app is currently running?
(this ofcourse in a multimonitor scenario?
Printable View
how can i check what monitor my app is currently running?
(this ofcourse in a multimonitor scenario?
There is a Screen class you may use.VB Code:
For Each mon As Screen In Screen.AllScreens If mon.Primary Then MessageBox.Show(mon.DeviceName) End If Next