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