Ejemplo n.º 1
0
    public static string[] GetCompletionList(string prefixText, int count, string contextKey)
    {
        DMUnit Obj_Unit = new DMUnit();

        string[] SearchList = Obj_Unit.GetSuggestRecord(prefixText);
        return(SearchList);
    }
Ejemplo n.º 2
0
    protected void GrdReport_ItemCommand(object source, RepeaterCommandEventArgs e)
    {
        try
        {
            switch (e.CommandName)
            {
            case ("Select"):
            {
                if (Convert.ToInt32(e.CommandArgument) != 0)
                {
                    ViewState["EditID"] = Convert.ToInt32(e.CommandArgument);
                    DS = Obj_Unit.GetUnitForEdit(Convert.ToInt32(e.CommandArgument), out StrError);
                    if (DS.Tables.Count > 0 && DS.Tables[0].Rows.Count > 0)
                    {
                        TxtUnit.Text = DS.Tables[0].Rows[0]["Unit"].ToString();
                    }
                    else
                    {
                        MakeEmptyForm();
                    }
                    DS       = null;
                    Obj_Unit = null;
                    if (!FlagEdit)
                    {
                        BtnUpdate.Visible = true;
                    }
                    BtnSave.Visible = false;
                    if (!FlagDel)
                    {
                        BtnDelete.Visible = true;
                    }
                    TxtUnit.Focus();
                }

                break;
            }
            }
        }
        catch (Exception ex)
        {
            throw new Exception(ex.Message);
        }
    }
Ejemplo n.º 3
0
    public void ReportGrid(string RepCondition)
    {
        try
        {
            DS = Obj_Unit.GetUnit(RepCondition, out StrError);

            if (DS.Tables.Count > 0 && DS.Tables[0].Rows.Count > 0)
            {
                GrdReport.DataSource = DS.Tables[0];
                GrdReport.DataBind();
            }
            else
            {
                GrdReport.DataSource = null;
                GrdReport.DataBind();
            }
            Obj_Unit = null;
            DS       = null;
        }
        catch (Exception ex)
        {
            throw new Exception(ex.Message);
        }
    }