F5 Debug…

Building & Debugging the Technology!!!

Archive for the ‘Telerik’ Category

F5Debug First Anniversary Give Away worth $1999 – Telerik Ultimate License

Posted by Karthikeyan Anbarasan on April 20, 2012

As many of you guys know today April 20th 2012, F5debug celebrated its first anniversary (F5Debug Celebrating First Anniversary) with some milestones around. But the celebration is not fulfilled unless F5debug have some thing to give away to his most precious readers and followers who have supported and motivated F5debug in all the aspects. F5debug along with its premium sponsors (Telerik) happy to announce the Give Away of Telerik Ultimate Collection for .NET worth $1999.

To give some insight on the Telerik which I hope most of my readers have already aware of,

Telerik is a market-leading provider of UI controls and components for ASP.NET AJAX, ASP.NET MVC, Silverlight, Windows Phone (WP7), WPF and Windows Forms, as well data access layer, reporting, code analysis and refactoring tools across all major Microsoft development platforms. Combined with its automated software testing and agile project management tools as well as its content management system, Telerik offers an end-to-end solution for building applications with unparalleled richness, responsiveness and interactivity. Telerik products help thousands of companies be more productive and deliver reliable products under budget and on time.

Now what you get in this Give Away:

Telerik along with F5debug provides opportunity to my blog readers and followers to get an Telerik Ultimate Collection for .NET which includes all the developer tools from Telerik along Priority Support and Source Code. Below is the list of individual tools that are involved in this collection.

image

Get more information on each of the product in www.telerik.com.

Now how to take part in this Give Away:

If you need to get your hands dirty with this product you need to follow a simple process to get this Ultimate License for you. The Give away window is open from today April 20th 2012 till May 20th 2012 (30 days) and the winner will be announced by June 1st 2012.

Registration Process:

The registration process is very simple that you just do the below steps and you nomination is taken into consideration automatically.

Note – Followers who don’t have the facebook or twitter account can subscribe the F5debug blog directly. To have a better opportunity to win the Licenses kindly follow all the steps above. Also spread the word of this Give Away in Twitter and Facebook to get some additional gifts as a part of the Give Away!!!

Thanks guys, as said above winners will be announced by June 1st 2012 through mail and twitter. Until then watch out www.f5debug.net for latest technology stuffs and some more Giveaways on the way.

Happy Programming!!!

Posted in F5Debug, Telerik | Tagged: , , | 6 Comments »

Telerik Windows Phone 7 Series – Working with Telerik RadMessageBox Controls

Posted by Karthikeyan Anbarasan on February 3, 2012

Introduction:

In our earlier article we have seen how to start with the Telerik RadControls for Windows Phone 7 Development (Windows Phone 7 – Telerik RadControls)  by installing the package to the development environment. Here in this article we will see how to use the RadMessageBox Telerik control, in this series we will explore using each and every control which will help us to select the best control for developing application for Windows Phone 7.

Steps:

Open Visual Studio 2010 IDE and create a new Silverlight for Windows Phone project under the Telerik Tab and select the C# RadControls Windows Phone Application and provide a valid project name as shown in the screen below. For VB.NET Developers can select the VB.NET RadControls template to make it convenient.

2012-02-03 21h11_14

Now we can see the Project Configuration Wizard to configure the custom setting required to run the project. Here we are going to select the component first as shown in the screen below.

2012-02-03 21h16_44

Now we need to select the project type, we have options to select a standard Windows Phone Application or a Panorama control or a Pivot Control, here in this sample we will select the standard Windows Phone Application. If application bar is required we can select the check box else we can leave it unchecked as shown in the screen below. For Panorama Control the application bar check box is disabled since we cant integrate for better user readability and performance.

2012-02-03 21h19_28

Now we are done with the configuration, so click on Finish to complete the configuration and we can see the Project will be opened with the XAML Page. We will design the page to have some unique design, once we are done with the design our page looks like below.

2012-02-03 21h26_52

XAML Code:

 1: <Grid x:Name="LayoutRoot" Background="Transparent">
 2:     <Grid.RowDefinitions>
 3:         <RowDefinition Height="Auto"/>
 4:         <RowDefinition Height="*"/>
 5:     </Grid.RowDefinitions>
 6:
 7:     <!--TitlePanel contains the name of the application and page title-->
 8:     <StackPanel x:Name="TitlePanel" Grid.Row="0" Margin="12,17,0,28">
 9:         <TextBlock x:Name="ApplicationTitle" Text="F5DEBUG TELERIK SERIES" Style="{StaticResource PhoneTextNormalStyle}"/>
 10:         <TextBlock x:Name="PageTitle" Text="radmessagebox" Margin="9,-7,0,0" Style="{StaticResource PhoneTextTitle1Style}"/>
 11:     </StackPanel>
 12:
 13:     <!--ContentPanel - place additional content here-->
 14:     <Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
 15:         <Button Content="Trigger RadMessageBox" Height="174" HorizontalAlignment="Left" Margin="44,51,0,0" VerticalAlignment="Top" Width="383" />
 16:     </Grid>
 17: </Grid>

Now we need to write our code in the button click event to get the RadMessageBox control, first we see in the solution explorer what are the reference added to the Reference Folder. Here we can see the Telerik References which we selected in the configuration wizard are available over here as shown in the screen below.

2012-02-03 21h34_18

Now go to the code behind and add using directives to get the Telerik properties to the be used with the code, so add the below 2 using statements directly to the code behind using list.

C# Code:

 1: using Telerik.Windows.Controls;
 2: using Telerik.Windows.Controls.Primitives;

Now on the button click event we will write the below code, which will call the RadMessageBox control with a Checkbox providing the user to check it based on the need. The first parameter is the title for the message box, second parameter is the type of the message box the control should display. Here we have different options where we can make use of the MessageBoxButtons enumerations to select the options. Third parameter is the Message content and final parameter is the Checkbox content.

C# Code:

 1: using System;
 2: using System.Collections.Generic;
 3: using System.Linq;
 4: using System.Net;
 5: using System.Windows;
 6: using System.Windows.Controls;
 7: using System.Windows.Documents;
 8: using System.Windows.Input;
 9: using System.Windows.Media;
 10: using System.Windows.Media.Animation;
 11: using System.Windows.Shapes;
 12: using Microsoft.Phone.Controls;
 13: using Telerik.Windows.Controls;
 14: using Telerik.Windows.Controls.Primitives;
 15:
 16: namespace TelerikMessageBoxSample
 17: {
 18:     public partial class MainPage : PhoneApplicationPage
 19:     {
 20:         // Constructor
 21:         public MainPage()
 22:         {
 23:             InitializeComponent();
 24:         }
 25:
 26:         private void Button_Click(object sender, RoutedEventArgs e)
 27:         {
 28:             RadMessageBox.Show("Telerik RadControls for Windows Phone 7", MessageBoxButtons.YesNo,
 29:                 "Are you Impressed with Telerik RadControl???",
 30:                 "Very Much Impressed");
 31:         }
 32:
 33:     }
 34: }

Now we are done with our code, we will build and execute the application and we can see the application loads in the Windows phone 7 Emulator and clicking on the button will show the RadMessageBox control usage as shown in the screens below.

2012-02-03 22h10_202012-02-03 22h10_37

Conclusion:

We can enhance the control to get most of the features and customize it based the need. We will see on how to use the rest of the RadControls. Mean while continue to read my Windows Phone 7 Development Series in 31 Days.

Posted in Telerik | Tagged: , , , , , , , , , , , , | Leave a Comment »

Telerik Webinar – Sharper your .Net Ninja skills

Posted by Karthikeyan Anbarasan on February 3, 2012

 

Telerik has released a recent build and we have new stuffs to know with the latest release with the Telerik Webinar scheduled between February 20th to February 22nd and the Registration for Q1 2012 Webinar Week is now open, so we can book our seat right away and block off the time in our calendar to brush up on all the cool new things coming from Telerik.

At each webinar there will be draw for Telerik Ultimate Collection license worth $1999. The Ultimate Collection contains the newest product – Kendo UI – everything we need to build sites and mobile apps with HTML5 and JavaScript. To get eligible for the draw we need to attend the session live and participate in the Q&A sessions.

Register for the Session using the link – http://www.telerik.com/support/webinars.aspx

 

Day 1 – Mon, Feb 20

9:30 AM – 10:30 AM
What’s New in XAML – RadControls for Silverlight and WPF

11:00 AM – 12:00 PM
What’s New in Test Studio

12:30 PM – 1:30 PM
What’s New in Data Tools – OpenAccess ORM

2:00 PM – 2:30 PM
What’s New in RadControls for WinForms and Reporting

 

 

Day 2 – Tues, Feb 21

9:30 AM – 10:30 AM
What’s New in ASP.NET

11:00 AM – 12:00 PM
What’s New in Tools for Better Code

12:30 PM – 1:30 PM
What’s New in Mobile – RadControls for Windows Phone

 

 

Day 3 – Wed, Feb 22

9:30 AM – 10:30 AM
What’s new in KendoUI

11:00 AM – 12:00 PM
What’s new in Sitefinity 5.0

12:30 PM – 1:30 PM
What’s new in TeamPulse

(All times are Eastern Standard Time)

Couple of months I am working on with the Sitefinity product to build a website and I am really looking for the webinar on this product. Every one can make use of this opportunity and get the best out of the webinars.

Happy Programming!!!

Posted in Telerik | Tagged: , , , | Leave a Comment »

Windows Phone 7 – Telerik RadControls

Posted by Karthikeyan Anbarasan on January 2, 2012

 

Introduction:

In this article we are going to start with using the Telerik RadControls for Windows Phone 7 development. I was working on a requirement and suddenly got a chance to look into the Telerik RadControls for Windows Phone 7 and it was very much impressive to use. So I just thought of sharing this article to my readers to get the complete idea on using the controls one by one. Here in this series we will see each of the control and its properties to get clear idea on the controls. Telerik RadControls for Windows Phone 7 is a licensed product from Telerik, to get hands on before buying the product Telerik has provided the Trail Version for the developers to get hands on before buying the product.

Link to download – http://www.telerik.com/products/windows-phone.aspx

Once the executable are downloaded we can install the application by running as an administrator and we can see the set up wizard opened as shown in the screen below. Just follow the steps to install the executable to the development environment. Just have a look on the Agreement details and click I Agree – Continue button to proceed further.

2012-02-01 12h06_18

Now we can see the options to install the RadControls to a particular folder, by default the folder selected to install the application will be
C:\Program Files (x86)\Telerik\RadControls for Windows Phone 7 Q3 2011 as shown in the screen below. We can change the folder location by clicking on the Customize Button and selecting the appropriate folder then click on Install button to install the application.

2012-02-01 12h06_29

Now we can see the RadControls are being installed to the respective folder selected as shown in the screen below.

2012-02-01 12h07_45

Once the installation is completed we can see the result on the successful completion as shown in the screen below. We are now ready to start with the development with the Telerik RadControls by using the templates installed with the Visual Studio 2010 template list. Additionally we can also see a shortcut icon gets created at the desktop with the name RadControls for Windows Phone 7 Q3 2011 Demos. Clicking on the shortcut will open the template for the RadControls with Visual Studio 2010.

2012-02-01 12h08_06

Now we are well set to start using the controls, to start with we can just open Visual Studio 2010 IDE and we can see the Telerik Menu to select the Rad Controls for Windows Phone 7 Template as shown in the screen below.

2012-02-02 21h49_42

On selecting the Create New Telerik Project we an see the options to select the C# based project or a VB.NET based project as shown in the screen below.

2012-02-02 21h51_41

We will see in detail on creating and working on the projects in our future articles. Also we will see what are the controls available for the windows phone 7 development. Telerik provides a list of RadControls for the Windows Phone 7 development as shown in the list below.

  • Animation Framework
  • ApplicationFrame
  • AutoCompleteBox
  • BusyIndicator
  • BulletGraph
  • Calendar
  • Chart
  • ContextMenu
  • DataBoundListBox
  • DatePicker
  • DateSelector
  • DockPanel
  • Gauge
  • JumpList
  • LayoutTransform
  • ListPicker
  • LoopingList
  • MessageBox
  • NumericUpDown
  • PickerBox
  • SlideView
  • ToggleSwitch
  • TimePicker
  • TimeSelector
  • TransitionControl
  • UniformGrid
  • Window
  • WrapPanel

We are going to see more on these controls in this series in detail, till then happy programming!!!

Posted in Telerik, Windows Phone 7 | Tagged: , , | 2 Comments »