1. How do I make a CComboBox Visible or Invisible at runtime?
// member variable m_combo1 is of type CComboBox
// Using Borland C++, I would write:
// m_combo1->Visible = true; (or false)
2. How can I change a CComboBox's Properties from "Drop Down" to "Drop List"
at runtime?
3. How do I load a picture into a PictureBox at runtime?
// member variable m_bitmap is of type CStatic
// Using Borland C++, I would write:
// m_bitmap1->Image = Image->FromFile(strPath)
I have MFC and VC++ books, but I can't find anything on how to do basics
like this.
If it helps, I am using eVC4-SP4 with the Pocket PC 2003 SDK.