Subj : Re: SendKeys to other applications To : borland.public.cpp.borlandcpp From : Sebastian Ledesma Date : Fri Mar 18 2005 09:25 am Hi Frank: You can use: ::PostMessage(hDestinationWindowt, WM_CHAR, myKey, 1); For example: ::PostMessage(hDestinationWindowt, WM_CHAR, VK_HOME, 1); Also you can try with WM_KEYDOWN/WM_KEYUP if you wish a high level of control. Saludos Sebastian "Frank Schneeweiß" escribió en el mensaje news:423AA67E.DAF0F456@spea-ate.de... > Hello, > I write my programs in Borland C++ 5.02. > I have heard, that Visual Basic has one function SendKeys. The VB > programmers use this function for remote access to other applications. > I am sure, that is also possible in Borland C++ 5.02. Is there anyone, > who has solved this problem. Which api functions are necessary? > Thanks in advantage, > Frank > .