Marketplace
Related Articles
Related Categories
Recently Added
- Tips For English Writing
- Picture Writing Prompts For First Grade
- How To Do A Resume
- Essay Writing Competition 2010
- Essay Tips Writing
- How To Write An Essay
- Writing Jobs In Philadelphia
- How To Learn English
- Freelance Writing Jobs Available
- Freelance Writing Job Openings
- Freelance Humor Writing Jobs
- How To Get A Job Writing Greeting Cards
- Seo Article Writing Jobs
- Blog Writing Jobs In India
- How To Get A Job Writing Jingles
- Writing Jobs London Uk
- Ebook Writing Jobs
- Home Based Writing Jobs In India
- Freelance Writing Job Search
- Nature Writing Jobs
Join StudyUp.com Today
You Recently Visited
How To Write Hindi In English
Toni Said:
how i improve my english.somebody help me to whom i write in hindi it convert in english.?We Answered:
I know both languages. Feel free to email me.iamtherealabhishek@gmail.com
Shelly Said:
can you tell me a website on which I can write a text in hindi language and it show the text in english?We Answered:
You can try translators such as 'babelfish', or 'google translate,' etc., but they are far from perfect.http://babelfish.altavista.com/
Greg Said:
How to write in Hindi at Lenove X62 Thinkpad?We Answered:
I believe that laptop ONLY supports the English language to write in as default. Check the languages section in the control panel. You may have to download a font pack to have it "type" in hindi. Contact their tech support for more assistance.Melvin Said:
i want to know how to say evil in hindi.. translate from eng to hindi,word to english again is there site?We Answered:
Rakshas - eviltry this
http://translation.babylon.com/English/t…
Marian Said:
How do you write peace in Hindi?We Answered:
?????? or ?????Both spellings are good. The word is "Shanti".
Copy the above text to Wordpad and enlarge font size to at least 24 to get the shape right. If you are using Win-XP the font will be auto-selected as Mangal.
An easy online typewriter for Hindi typing is at http://uninagari.com/
June Said:
How can we convert English language in to Hindi language in C and C++ programming?We Answered:
I can tell you what you do in the Microsoft world.When you build a program using MFC/DevStudio, you can create a separate resource only DLL that has the strings for all your messages in it. You build one with the messages in English and one in Hindi. Your installer code will have to allow the user to select the language and then coyp the correct version of the DLL into the install directory.
In your main program code, instead of coding a literal, (something of the form "This is a string.") you instatiante a CString and load it from the resource table.
The code looks something like this:
CString strMessage;
strMessage.LoadString(resourceID);
AfxMessageBox(strMessage);
The other thing that you have to remember to do is to build all of your code using the _UNICODE compiler flag. That way the compiler will use two byte wide characters for all of your CStrings.
You can check on Microsoft's web site for more information on this. Search under the topic "Internationalization".