Hello,
I have a Telerik report project in Visual Studio 2008, The project worked very good until now, I have a little problem.
The problem :
When I compile, the telerik report project doesn't take the changes that I did in the report.cs....
And more specifically when I change things into the procedures like this below, the telerik report project doesn't what it should do, It does what there was previously in the procedure.
Some ideas??
Thanks,
Daniel Botero Correa
I have a Telerik report project in Visual Studio 2008, The project worked very good until now, I have a little problem.
The problem :
When I compile, the telerik report project doesn't take the changes that I did in the report.cs....
And more specifically when I change things into the procedures like this below, the telerik report project doesn't what it should do, It does what there was previously in the procedure.
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(); |
} |
Some ideas??
Thanks,
Daniel Botero Correa