hi , how can i change my telerik report language to be in french ? i am trying to change cultur in reportviewer but it not work .
thank you ..
//// Set the language for static text (i.e. column headings, titles)
Thread.CurrentThread.CurrentUICulture = new CultureInfo("fr");
//// Set the language for dynamic text (i.e. date, time, money)
Thread.CurrentThread.CurrentCulture = new CultureInfo("fr");
thank you ..