Пример #1
0
		public void addFormula(csRptFormulaType formulaType, string name, string nameUser, string descrip, int helpContextId)
		{
            var item = tv_formulas.Nodes[C_KEY_SYSFUNCTIONS].Nodes.Add(nameUser);
            item.ImageIndex = C_FORMULA_INDEX;
            item.SelectedImageIndex = item.ImageIndex;

            string info = "";
            info = cUtil.setInfoString(info, C_FUNID, formulaType.ToString());
            info = cUtil.setInfoString(info, C_FUNDESCRIP, descrip);
            info = cUtil.setInfoString(info, C_FUNNAME, name);
            info = cUtil.setInfoString(info, C_HELPCONTEXTID, helpContextId.ToString());

            item.Tag = info;
		}
Пример #2
0
        public void addFormula(csRptFormulaType formulaType, string name, string nameUser, string descrip, int helpContextId)
        {
            var item = tv_formulas.Nodes[C_KEY_SYSFUNCTIONS].Nodes.Add(nameUser);

            item.ImageIndex         = C_FORMULA_INDEX;
            item.SelectedImageIndex = item.ImageIndex;

            string info = "";

            info = cUtil.setInfoString(info, C_FUNID, formulaType.ToString());
            info = cUtil.setInfoString(info, C_FUNDESCRIP, descrip);
            info = cUtil.setInfoString(info, C_FUNNAME, name);
            info = cUtil.setInfoString(info, C_HELPCONTEXTID, helpContextId.ToString());

            item.Tag = info;
        }
Пример #3
0
		public void addFormula (csRptFormulaType csRptFormulaType, string str, string str2, string str3, int i)
		{
			throw new NotImplementedException ();
		}
Пример #4
0
 public void addFormula(csRptFormulaType csRptFormulaType, string str, string str2, string str3, int i)
 {
     throw new NotImplementedException();
 }
 public void setFormulaType(csRptFormulaType rhs)
 {
     m_formulaType = rhs;
 }
Пример #6
0
 internal cReportFormulaType add(cReportFormulaType c, csRptFormulaType key)
 {
     return(add(c, key.ToString()));
 }
Пример #7
0
 public void setHelpContextId(csRptFormulaType rhs)
 {
     m_helpContextId = (int)rhs;
 }
Пример #8
0
 public void setId(csRptFormulaType rhs)
 {
     m_id = rhs;
 }
Пример #9
0
 public void setFormulaType(csRptFormulaType rhs)
 {
     m_formulaType = rhs;
 }
 public void setHelpContextId(csRptFormulaType rhs)
 {
     m_helpContextId = (int)rhs;
 }
 public void setId(csRptFormulaType rhs)
 {
     m_id = rhs;
 }
 internal cReportFormulaType add(cReportFormulaType c, csRptFormulaType key)
 {
     return add(c, key.ToString());
 }