lblSupplier = new QLabel($this->objParentObject, $strControlId); $this->lblSupplier->Name = QApplication::Translate('Supplier'); $this->lblSupplier->Text = ($this->objProduct->Supplier) ? $this->objProduct->Supplier->__toString() : null; return $this->lblSupplier; } /** * Create and setup QLabel lblManufacturer * @param string $strControlId optional ControlId to use * @return QLabel */ public function lblManufacturer_Create($strControlId = null) { $this->lblManufacturer = new QLabel($this->objParentObject, $strControlId); $this->lblManufacturer->Name = QApplication::Translate('Manufacturer'); $this->lblManufacturer->Text = ($this->objProduct->Manufacturer) ? $this->objProduct->Manufacturer->__toString() : null; return $this->lblManufacturer; } /** * Create and setup QLabel lblType * @param string $strControlId optional ControlId to use * @return QLabel */ public function lblType_Create($strControlId = null) { return $this->lblTypeId_Create($strControlId); } } ?>