/**
  * Static Helper Method to Create using QueryString arguments
  *
  * @param mixed $objParentObject QForm or QPanel which will be using this NarroProjectProgressMetaControl
  * @param QMetaControlCreateType $intCreateType rules governing NarroProjectProgress object creation - defaults to CreateOrEdit
  * @return NarroProjectProgressMetaControl
  */
 public static function CreateFromQueryString($objParentObject, $intCreateType = QMetaControlCreateType::CreateOrEdit)
 {
     $intProjectProgressId = QApplication::QueryString('intProjectProgressId');
     return NarroProjectProgressMetaControl::Create($objParentObject, $intProjectProgressId, $intCreateType);
 }