[jawsscripts] Re: Detecting a JAWS install/running service

  • From: Jamal Mazrui <empower@xxxxxxxxx>
  • To: jawsscripts@xxxxxxxxxxxxx
  • Date: Sat, 01 Sep 2012 11:31:58 -0400

Here is C# code that checks for existence of the JAWS application window:

[DllImport("user32.dll", SetLastError=true)]
public static extern IntPtr FindWindow(string sClass, string sTitle);

public bool IsJAWSActive(){
string sClass = "JFWUI2";
string sTitle = "JAWS";
return ((int) FindWindow(sClass, sTitle) != 0);
} // IsJAWSActive method


On 8/31/2012 2:58 PM, Andy B. wrote:
> I want to determine if JAWS is installed/running on a person's computer from
> .net. Does anyone know how to do something like this?
>   
>
>   
>
>
>
> __________�
>
> View the list's information and change your settings at
> http://www.freelists.org/list/jawsscripts
>

__________�

View the list's information and change your settings at 
http://www.freelists.org/list/jawsscripts

Other related posts: