Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
K

KBM73

@KBM73
About
Posts
11
Topics
10
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Formatting of existing code.........
    K KBM73

    Hi, Is there any tools through which we can change the format of existing code...... Regards,

    C# tools

  • Code Formatting.........!!!!
    K KBM73

    Hi All, Is there any way to format the existing code..........? Regards

    C# question

  • Function for Converting Plural into Singular
    K KBM73

    Hi all, I am trying to write a function which converts plural words into singular words. Below is the function which i have created but it is not working properly for the words which ends with -se like lease, prise etc. Means when it comes to conver these words from plural to singular it is not giving proper output.It is converting "Leases" to "Leas" and "phrases" to "Phras". Please help me as soon as possible! private void _StripPlural(string strValue) { if (strValue.Length > 1) { if (strValue.EndsWith("s")) { strValue = strValue.Substring(0, strValue.Length - 1); string strPluralRule="s,z,x,ch,sh,ss"; bool blnFlag = false; char[] arrchDelimeter ={ ',' }; string[] arrstr = strPluralRule.Split(arrchDelimeter); for (int i = 0; i < arrstr.Length; i++) { string strTest = arrstr[i] + "e"; if (strValue.EndsWith(strTest) && !strValue.EndsWith("sse")) { blnFlag=true; return; } } if (blnFlag == true) { strValue = strValue.Substring(0, strValue.Length - 1); } if (strValue.EndsWith("ie")) { strValue = strValue.Substring(0, strValue.Length - 2) + "y"; } if (strValue.EndsWith("sse")) { strValue = strValue.Substring(0, strValue.Length - 1); } } } //return strValue; } Regards,

    C# help

  • C# Code Standards
    K KBM73

    Hi All, I need to write document for C# Code Standards.Anybody who is having idea about any article regarding the same? With Regards

    C# csharp question

  • Connection with Telephone
    K KBM73

    How to get the user Telephone Inputs into our C# application...?? Regards

    C# csharp tutorial question

  • Interactive Voice Response System
    K KBM73

    Hi all, How to develop system for IVR..........any idea. Regards

    Mobile tutorial

  • IVR System
    K KBM73

    Hi, Anybody can help me to develop Integrated Voice Responce System using C#.

    C# csharp help

  • How to expire page when moved to next page....
    K KBM73

    Hi, I have page in which user will fill the data by clicking submit....once he click submit button it goes to the next page and I want when user wants to go back to previous the content of previous page must be clear and he get the message "Page expire". Regards, KBM

    ASP.NET tutorial

  • How to restrict user to Fill only 15 Days back date??
    K KBM73

    Thanks Rays, It is working .....now i am trying to show the error message when condition is false. Thanks again, KBM

    ASP.NET help tutorial question

  • How to restrict user to Fill only 15 Days back date??
    K KBM73

    Hi, I have one field in which user will fill date for that I have taken One DropDown for "MONTHs" and One TextBox for "DATE" and another TextBox for "YEAR" ("Month/dd/Year"). Now I want to validate Date filled by user..that must be current date or just within 15 days back date. I tried to validate date through range validator(jDateValid) and for that I have written : int curr = DateTime.Now.Day; JDateValid.MinimumValue = Convert.ToString(curr-15); JDateValid.MaximumValue = Convert.ToString(curr); but when the date is 1,2,3,4.....15 range validator giving error message. Anybody help to solve this problem.... KBM

    ASP.NET help tutorial question

  • ASP.Net & C#
    K KBM73

    Hi, I have a dropdwonlist in which ListItems are months from Jan to Dec. Now I want to show only Current Month & Previous Month at runtime. Anybody can help to rsolve this.

    ASP.NET csharp asp-net help
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups