Posts

Showing posts from March, 2017

Getting Started With SSRS 2016

Image
In this article, we will see the following How to setup the SSRS environment How to create a table in database How to create an SSRS project How to create a new report How to deploy the report How to run the report Prerequisite We should have some basic knowledge in SQL Server Query and Visual Studio Tool to create SSRS reports, using Visual Studio 2015. SQL Server Basic Query Visual Studio 2015 How to setup the SSRS environment If you want to know how to setup the SSRS environment procedure, prerequisites and SSDT, then you can read my previous article at the link given below. Getting Started with SSDT 2016 using Visual Studio 2015 How to create a table in a database First, create a Product table, using SQL Server Management Studio in SQL Server database. Now, you can add the product details in the Product table. CREATE   TABLE  [dbo].[Products](   [ProductID] [ int ] IDENTITY(1,1)  NOT   NULL ,   [...

Create A DatePicker In Xamarin.Forms Using Visual Studio

Image
Delpin Susai Raj is working as a Xamarin Developer in Rajasri Systems, Chennai- India. C-Sharp Corner MVP.  http://www.c-sharpcorner.com/members/delpin-susairaj2 Introduction Xamarin is a platform to develop cross-platform and multi-platform apps (for example, Windows phone, Android and iOS). In Xamarin platform, the code sharing concept is used. In Xamarin Studio, Visual Studio is also available. Prerequisites Visual Studio 2017 RC. The steps given below are required to be followed in order to create a DatePicker in Xamarin.Forms, using Visual Studio. Step 1 Click File--> select New--> select Project. The project needs to be clicked after opening all the types of the projects in Visual Studio or click (Ctrl+Shift+N).   Step 2 After opening the New Project, select Installed-->Templates-->Visual C#-->Cross-Platform-->choose Cross Platform app. Now, give your Xamarin form app: a name (Ex:sample) and give the path of your project. Afterwards, ...