or
public static object FormatFrequency(object valor, object unit) |
{ |
if (unit.ToString() == "TIME") |
{ |
String CM_Frequency_TIME = xxx.ResourceManager.GetString("CM_Frequency_TIME", CultureInfo.CreateSpecificCulture("fr")); |
return valor.ToString() + " " + CM_Frequency_TIME; |
} |
else if (unit.ToString() == "TIME_HOUR") |
{ |
String CM_Frequency_TIME_HOUR = xxx.ResourceManager.GetString("CM_Frequency_TIME_HOUR", CultureInfo.CreateSpecificCulture("fr")); |
return valor.ToString() + " " + CM_Frequency_TIME_HOUR; |
} |
else if (unit.ToString() == "DISTANCE") |
{ |
String CM_Frequency_DISTANCE = xxx.ResourceManager.GetString("CM_Frequency_DISTANCE", CultureInfo.CreateSpecificCulture("fr")); |
return valor.ToString() + " " + CM_Frequency_DISTANCE; |
} |
return valor.ToString(); |
} |
Hi.
This is suriya,
Now i have a problem in rendering the output in pdf., i.e., in runtime i display some of the rows in BOLD Font for my comfortable..
but in the output it is rendered correctly., but when i try to take printout or render the output in the pdf means it is display ine the ordinary
font.,
plz rectify my problem very fast..
Bye..
By
Suriya