This is a migrated thread and some comments may be shown as answers.

Telerik project doesn't update DLL after compilation

1 Answer 44 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Daniel Botero Correa
Top achievements
Rank 1
Daniel Botero Correa asked on 07 May 2010, 01:13 PM
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.

        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

1 Answer, 1 is accepted

Sort by
0
Steve
Telerik team
answered on 11 May 2010, 09:44 AM
Hello Daniel,

This issue has been addressed in the latest official Q1 SP1 release. Please upgrade and let us know how it goes.

Greetings,
Steve
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
Tags
General Discussions
Asked by
Daniel Botero Correa
Top achievements
Rank 1
Answers by
Steve
Telerik team
Share this question
or