private void NewRowManual(ref PAddresseeTypeRow ARow)
        {
            string newName = Catalog.GetString("NEWTYPE");
            Int32 countNewDetail = 0;

            if (FMainDS.PAddresseeType.Rows.Find(new object[] { newName }) != null)
            {
                while (FMainDS.PAddresseeType.Rows.Find(new object[] { newName + countNewDetail.ToString() }) != null)
                {
                    countNewDetail++;
                }

                newName += countNewDetail.ToString();
            }

            ARow.AddresseeTypeCode = newName;
        }
        private void NewRowManual(ref PAddresseeTypeRow ARow)
        {
            string newName        = Catalog.GetString("NEWTYPE");
            Int32  countNewDetail = 0;

            if (FMainDS.PAddresseeType.Rows.Find(new object[] { newName }) != null)
            {
                while (FMainDS.PAddresseeType.Rows.Find(new object[] { newName + countNewDetail.ToString() }) != null)
                {
                    countNewDetail++;
                }

                newName += countNewDetail.ToString();
            }

            ARow.AddresseeTypeCode = newName;
        }