Click here to Skip to main content
15,901,035 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have one mobile application which take 160 character as input in text editor of mobile after completion of 160 character it does not take any single character

I didn't get any number as 160 in code so I can change is as 320 or more than 160
Can anybody tell me that how to exceed this length ?
Which changes are required in source code file?

Vishal Kolekar
Posted

It could be just about everywhere. I take it from your question that you do have the code for that application, but you didn't program it. Here are my three guesses as to what's happening:


  1. The limit could be configurable for instance so that value might be hidden in some configuration file.
  2. The application could also reference some library containing a control for which you do not have the source code and the value is hidden there.
  3. The joker who programmed this little gem thought writing out 160 is just to easy (and also to easily found by anybody) and thus hid the constant by calculating it:

    • 160 == 10 * 16
    • 160 == 2 * 5 * 16
    • 160 == 2 * 5 * 2 * 8
    • etc. etc. etc



My two (three :) ) cents!

Best regards,

-MRB
 
Share this answer
 
Thanx.............Manfred
I will check ...
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900