Click here to Skip to main content
15,883,705 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
how to insert GUI inputs in marathi language in to database in C# and also how to type in textbox in marathi language
Posted
Comments
pradiprenushe 2-Apr-13 2:04am    
You nedd to install marathi font.
And for insert data in database use navarchr column query like this.
Insert into table(column1) values (N'उपलब्ध')
pradiprenushe 2-Apr-13 2:04am    
Refer this link
http://www.codeproject.com/Articles/67944/Hindi-Marathi-Transliteration-ASP-NET-Custom-Contr
sudhirkolhe1020 2-Apr-13 2:48am    
but above link code not works in c# . please send me link for C# windows application.
pradiprenushe 2-Apr-13 3:01am    
http://support.microsoft.com/kb/314960 use this link to install font.
Set your textbox font to newly added font. This will solve problem of Marathi typing.
While saving make column to nvarchar. Use query as
'Insert into table(column1) values (N'"+textbox.Text+"')'

1 solution

Two parts to this -

1) You will need the appropriate fonts installed. The UI should be able to display Marathi characters.
2) Data will need to be stored in nvarchar unicode format[^].
 
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