+#ifdef __WIN16__
+ wxASSERT_MSG( !m_isIcon, "Icons are not supported in wxStaticBitmap under WIN16." );
+ image = &bitmap;
+#else // Win32
+ image = ConvertImage( bitmap );
+ m_isIcon = image->IsKindOf( CLASSINFO(wxIcon) );
+#endif // Win16/32
+
+ // create the native control
+ if ( !MSWCreateControl(
+#ifdef __WIN32__
+ _T("STATIC"),
+#else // Win16
+ _T("BUTTON"),
+#endif // Win32/16
+ wxEmptyString, pos, size) )
+ {
+ // control creation failed
+ return FALSE;
+ }