I am developing my first Windows embedded Compact 7 application. It is c# and .net 3.5 I have a group of buttons. When one of the buttons is clicked, the effect wanted is, that all of the buttons seem to be clicked at the same time. Solutions I found till now, like
SendKeys.Send("{ENTER}");
or even better
button1.Performclick
seem not to be avalable on WEC7.
Or do I oversee something, that would make them available?