+#else // __WXPALMOS5__
+#define winUndefConstraint 0xFFFF
+#define winMaxConstraint 288
+ // FormType *FrmNewForm (UInt16 formID, const Char *titleStrP, Coord x, Coord y, Coord width, Coord height,
+ // Boolean modal, UInt16 defaultButton, UInt16 helpRscID, UInt16 menuRscID);
+ FrameForm = FrmNewForm (GetId(), title.c_str(),
+ (( pos.x == wxDefaultCoord ) ? winUndefConstraint : pos.x),
+ (( pos.y == wxDefaultCoord ) ? winUndefConstraint : pos.y),
+ winMaxConstraint, winMaxConstraint,
+ false, 0, 0, 0);
+#endif
+ if(NULL == FrameForm) {