SendKeys Ctrl-A ne fonctionne pas

Je suis en train d'envoyer CTRL Un (sélectionner tout pour une application dans ce cas-mot, mais essayez comme je pourrais, ça ne fonctionne pas) j'ai essayé plusieurs combinaisons mais en vain, des idées?

        IntPtr appHandle = FindWindow(null, "Document1 - Microsoft Word");
        if (appHandle == IntPtr.Zero)
        {
            MessageBox.Show("Specified app is not running.");
            return;
        }

        SetForegroundWindow(appHandle);
        System.Threading.Thread.Sleep(500);

        //SendKeys.SendWait("111");
        SendKeys.SendWait("^A");
        //SendKeys.SendWait("^(A)"); //ctrl a
        //SendKeys.SendWait("(^A)");
InformationsquelleAutor ALI | 2010-08-07