 |
|
 |
Nice stuff. Why only Hindi, try extending it to all Indian languages. And it would be nice if you have given info about the internal working of your project
|
|
|
|
 |
|
 |
Thanks for your precious vote.
Sure! Its on cards and also mentioned in article. But, when not sure. If you can help with any language it will be great!
|
|
|
|
 |
|
 |
hello Rahul,
can u tell me solution/how to write in Marathi.
"Everyone wants results, but no one is willing to do what it takes to get them" - Dirty Harry
~ In Life go Straight, And turn Right ~
|
|
|
|
 |
|
 |
Give me details or rather give me your email id, I will update the program to support the language!!
|
|
|
|
 |
|
 |
hi,
thanks for the immediate reply. and sorry for my late reply
i want to show amunt in marathi-
ex-
12,20,000/- should show as-
बारा लाख वीस हजार फक्त.
my id is javedsmart@rediffmail.com
"Everyone wants results, but no one is willing to do what it takes to get them" - Dirty Harry
~ In Life go Straight, And turn Right ~
|
|
|
|
 |
|
 |
Thanks Javed!
Article Updated.
|
|
|
|
 |
|
 |
Thats Great Rahul, works Perfect.
and thanks for mentioning me in the article.
Best of luck!!!
Reagrds,
Javed
"Everyone wants results, but no one is willing to do what it takes to get them" - Dirty Harry
~ In Life go Straight, And turn Right ~
|
|
|
|
 |
|
 |
Updated Again. Please do not use the previous file. Consider this a "big" fix.
No need to thank me. I just highlighted your contribution.
Rahul.
|
|
|
|
 |
|
 |
To get Indian date format in excel, format the cells with date>English(Ireland). Hope this helps at least someone.
|
|
|
|
 |
|
 |
Dear Sir,
Pls, me guide for which way to write English Date in Hindi Language.
B'use this function or code not run in my web.
so, pls guide me.
Pls, contact kotpritesh@gmail.com
Pritesh
Pritesh
|
|
|
|
 |
|
|
 |
|
 |
is it possible to rename folders and files in hindi??
===================
http://Nitin.uk.to
===================
|
|
|
|
 |
|
 |
I do not think this should be a problem! Simply use rename function in coding language (either C#,VB and so on) and then provide the name in the required language (Hindi or any other)
But remeber this should be used on PC's having XP or higher version of windows.
Regards
|
|
|
|
 |
|
 |
Hello Sir!
I am working with vs 2005, Actually i have to print amount in notepad. That amount belongs to only 200, but i have to print as 200.00, and suppose if it is 200.8 and it should be printed as 200.80,
Please guide me to proceed further...
Thanks in Advance,
Regards,
Prabakaran S.
|
|
|
|
 |
|
 |
Dear Prabakaran,
Please accept my appologies for missing out the mail.
Yes it is possible. Apply a number format for the same in the language you require.
Regards,
|
|
|
|
 |
|
 |
Hi, plz enclose Source code.
|
|
|
|
 |
|
 |
I am sorry, its a closed source program. I do not find a need to give the source.
I can correct it, in case you wish to report an error...
Rahul.
|
|
|
|
 |
|
 |
hprahul wrote: Windows (which still does not support Indian formats, don't know why?)
I am not sure what do you mean here.
Windows XP does support Hindi format for numbers, currency, date, time, etc.
See GetNumberFormat, GetCurrencyFormat, GetDateFormat, GetLocaleInfo.
All of them take a locale as parameter, and 0x439 is the locale ID for Hindi (India).
You can also check it and even customize it Control Panel -> Regional and Language Options
True, there is no support to spell-out numbers, but such support is not present in Windows in general, not only for Hindi.
|
|
|
|
 |
|
 |
Dear Mihai Nita,
I did not want to hurt your feelings but lets do some sample check(s) to prove by what i mean "Windows does not support it".
1. Even if windows display the dates properly, it always uses mm/dd/yyyy for its calculations and sheilds it from the end user. Thus, when ever a program is written it "Always" creates problems.
2. Regional settings provides the grouping of digits to "1,00,000" but it nevery works with program for which it is supposed to work for example MS Excel. What kind of support is this?
Hence i said that. Having said that, if you feel I am incorrect, please guide me through, i will modify it.
Regards,
Rahul
|
|
|
|
 |
|
 |
hprahul wrote: I did not want to hurt your feelings
This is a technical article, and I had technical comments. Nothing with feelings.
hprahul wrote: Even if windows display the dates properly, it always uses mm/dd/yyyy for its calculations and sheilds it from the end user.
hprahul wrote: nevery works with program for which it is supposed to work
I am not sure what are you referring to.
For instance on my Win XP the today short date is shown as 05-03-2007 (dd-mm-yyyy) and long date is 05 मार्च 2007.
If an application does not use the system settings, it means the application is not properly internationalized, not that Windows itself does not support Hindi.
Your library does not help such an application.
If someone wants to properly support number/date/etc formatting in his application, the Windows API is there and it works. A library duplicating the API, but for one locale only, is not really useful.
|
|
|
|
 |
|
 |
May i request you the examples of API's you are reffering to. It will of a great benefit to the user and mee too.
Regards,
Rahul.
|
|
|
|
 |
|
 |
For native code I have already mentioned GetNumberFormat, GetCurrencyFormat, GetDateFormat, GetLocaleInfo.
The usage is quite obvious, for instance:
TCHAR outBuffer[1024];
GetNumberFormat( LOCALE_USER_DEFAULT, 0, _T("123456789876.2345"), NULL, outBuffer, sizeof(outBuffer)/sizeof(outBuffer[0]) );
For managed code check Culture Explorer, which includes sources:
http://www.gotdotnet.com/Community/UserSamples/Details.aspx?SampleGuid=B778FF2C-9142-4769-839A-094F51A6F9F4
(some screen-shoots here: http://blogs.msdn.com/michkap/archive/2006/12/20/1328701.aspx)
|
|
|
|
 |
|
 |
The discussion on the use of "Indian Number & date format" is specific to programmers.Can I request you to highlight it's advantage keeping in mind the end users?
Also, it will really be helpful if you can post this on other forums/communities as well like Csharp communities on orkut.
|
|
|
|
 |
|
 |
Hello HT,
Thanks for writting in. This discussion contains a DLL (Dynamic Link Library) made in C# by me for the purpose of converting data to the required format to be used in a program for the ease of developers and avoiding to write this code.
Hence, please guide me to your lines :Can I request you to highlight it's advantage keeping in mind the end users?
I will post it to more communites...
Regards,
Rahul.
|
|
|
|
 |
|
|
 |