ActiveControl

  • Thread starter Thread starter Muhammad Arif
  • Start date Start date
M

Muhammad Arif

Dear All,

The ActiveControl property is not available with application object in
VB.Net compact framework. How do I implement it in VB.Net CF?

Regards,
Arif
 
The ActiveControl property is not supported on the compact framework. You
can find the control that currently has focus by iterating through all
controls in the Form and checking the Focused property for each control
until you find the one with focus.

--
Regards,

Maarten Struys, eMVP
PTS Software bv

www.opennetcf.org | www.dotnetfordevices.com
 
Back
Top