Forum Discussion

sindhu10's avatar
sindhu10
Contributor
6 years ago
Solved

How to check WinformsObject Exists or not

Hi, i am trying to check WinformsObject exists or not but the  below code is not working  if(Sys.Process.WaitWinFormsObject("DisplayScheduleMessage").Exists) {    Sys.Process.WinFormsObject("Disp...
  • sindhu10's avatar
    sindhu10
    6 years ago

    Thanks!

    i tried the below code and its working.

    var w = Sys.Process().WaitWinFormsObject("DisplayScheduleMessage", 1000);

    if(w.Exists && w.VisibleOnScreen)

    {

    }

    else

    {

    }