Skip to Content
0
Nov 05, 2017 at 11:08 AM

how to make number to national digits Arabic in runtime use Crystal Reports 2012 ?

444 Views

I'm use VS2012 and after run to CrystalReport show number (0123456789) ,

I want the numbers as follows (٠١٢٣٤٥٦٧٨۹) after runtime

I'm use code to run CrystalReport :

Dim dt As New DataTable  
With dt  
.Columns.Add("ID")  
End With  
For Each dr As DataGridViewRow In Me.CalculationTableDataGridView.Rows  dt.Rows.Add(dr.Cells("ID").Value)  
Next
Dim rptdoc As CrystalDecisions.CrystalReports.Engine.ReportDocument  rptdoc = New CrystalReportCount  
rptdoc.SetDataSource(dt)  
CRCountTotal.CrystalReportViewer1.ReportSource = rptdoc  
CRCountTotal.ShowDialog()  
CRCountTotal.Dispose()