Telerik OpenAccess ORM has been selected as a Best of TechEd North America 2011 finalist in the Database Development category -- congratulations to the OpenAccess team! Their hard work is paying off, especially after the well-accepted usability revamp of the Visual Designer. There is one final vital step before the winners are selected from the finalists' pool, and it is an interview which will be conducted by the editorial judging panel during TechEd. We hope to grab this one -- it is highly deserved. If you plan to visit TechEd North America in Atlanta in May, stop by the Telerik booth and ask for an...
For the second consecutive year, Telerik will be a platinum sponsor and exhibitor at the StarEast conference
May 1-6 in Orlando, FL. We invite you to stop by the Telerik booth to get a demo of what's new in Test Studio, talk shop and of course, get some great swag. Join us for an 'Industry Technical Presentation' on Silverlight and WPF automation challenges. This session will take place on Thursday, May 5 at 9:45am. I look forward to seeing you there! -Daniel Levy
A week after the official release of RadTimeBar for Silverlight and WPF with the Q1 2011 SP1 release, we have some fresh new resources ready for you to watch to start getting the hang of working with RadTimeBar and integration with other RadControls. Last week I blogged about the Official Release of RadTimeBar, which included walking through some examples and some sample code. But some of you would rather see it in action along with an expert voice on how this integration can take place - and we heard you! We have just published three new videos up to Telerik TV...
Todd Anglin's blog on how to trust the SQL an ORM tool produces stirred quite a bit of attention from the community, which also pushed us to action. As a result, we are happy to announce very exciting news on the next version of Telerik OpenAccess ORM, due this summer. Telerik OpenAccess Q2 2011 will come with a built-in Profiler, which will open the "black box" of its operations and will give you an insight on how to optimize its behavior. This tool will also provide great assistance to developers who have decided to not use an ORM tool on the premise...
Have you heard the news? New productivity tools have Just™ arrived, and it turns-out good things come in twos! JustTrace and JustDecompile have just been revealed and the betas are immediately available for download. JustTrace is a performance and memory profiler which can profile .NET 2.0+ (both web and desktop) and Silverlight applications. JustDecompile is a free tool which can decompile, and browse .NET assemblies. Continue reading to find what sets these two new tools apart from other profiling and decompiling tools available today. JustTrace When we started developing JustTrace we had a strong vision of what to include in the first version and where we couldn’t make any compromises. 1. We knew...
This post is number one in a three part series about memory consumption for web applications in general. Since the Web 2.0 era, Web Applications have changed for the better. They provide more functionality, better usability and improved performance. However this tendency led to increased complexity. It is not unusual for a user to stay on a single page for hours without leaving. The browser would just poll data from the server through Ajax requests and display it in even more interesting manners. Therefore it is no wonder that web applications have become hungrier for resources and the browsers couldn’t...
Joel and I did our “Agile
Buffet Table” session at GIDS in
Bengaluru, India.
We talked about XP, Scrum, and Kanban and how you can build your own methodology by
mixing and matching the features from each of these agile brands. We had *great* audience
interaction, the best I have ever had in India. We wrapped up the session by opening
Excel and designing a unique process with the audience. Our exit was also very funny,
there was no break between sessions(!), so the next speakers came in and were ready
to start when we ended. So I impersonated the next speaker, very agile.
The slides are available here (via
slideshare.) In...
As Miro mentioned in his last post, with the upcoming 2011 Q1 Beta, we will release a new and improved version of RadSlider. A lot new features are being added and many of the existing hot spots were addressed along the way. One of them - the performance hit when RadSlider has to re-render its ticks. I took the liberty to compare the impact of RadSlider on an application before and after we made the improvements. Scenario: Every second, for 60 seconds, generate a new ViewModel and set it as DataContext to RadSlider. Goal: See how many times the LayoutUpdated event will...
Using JustMock Commercial Edition you can easily mock out calls to MessageBox.Show(). This can come in handy if you are testing code that bases its execution path on a MessageBox’s result. Also, it is unlikely you want the MessageBox to actually pop up while running your tests. Let’s see how we can accomplish this! The Basics [TestMethod] public void MOCK_MESSAGEBOX_RESULT() { bool called = false; DialogResult expected =...
Currently RadChart provides 27 2D Chart types for SL/WPF. You can easily customise the existing chart types to create a more complex series like the box plot(also known as box-and-whisker diagram and widely spread in descriptive statistics). This blog post will demonstrate how to create Box Plot and Scatter Error bars by reusing the default Styles of the CandleStick and Scatter series and adding custom CandleStick / CandleStickSeriesDefinition (ScatterPoint/ ScatterSeriesDefinition) pair of classes. Box Plot: The BoxPlot have five number summaries: the smallest observation (sample minimum), lower quartile(Q1), median (Q2), upper quartile(Q3), and largest observation (sample maximum).For the purpose the Open, Close, High and Low...