FindString in Compact Framework

  • Thread starter Thread starter SH
  • Start date Start date
S

SH

I'm new to .NET programming, as well as the Compact Framework (in VS2005).

According to the documentation, there should be a
ComboBox.FindString(String) method in Windows Mobile. However, I don't
find it coming up in IntelliSense.

Is it part of the CF?
 
FindString is not part of the Compact Framework, it's possible to call it
with some P/Invoke and sending the relevant window messages to the native
ComboBox control. You'll find this already done in the ComboBoxEx class in
the SDF - www.opennetcf.org/sdf/

Peter
 
Back
Top