Convert into the Indian Rs formate
Visual Basic
3
Posts
3
Posters
0
Views
1
Watching
-
Respected, How to convert Integer value into Indian Rupees Formate in VB.Net E.g 1234567 convert into 12,34,567 Thanks
-
Respected, How to convert Integer value into Indian Rupees Formate in VB.Net E.g 1234567 convert into 12,34,567 Thanks
-
Respected, How to convert Integer value into Indian Rupees Formate in VB.Net E.g 1234567 convert into 12,34,567 Thanks
Here's the answer in C#: CultureInfo ci = CultureInfo.CreateSpecificCulture("hi-IN"); string converted = 1234567m.ToString("N", ci); Or in VB.NET: Dim ci As CultureInfo = CultureInfo.CreateSpecificCulture("hi-IN") Dim converted As String = 1234567D.ToString("N", ci) See my article about Windows 7 Timer here on CodeProject