Resources No resource found - Creating Simple API In Node.jsApr 22, 2018. In this article, we are going to learn how to create a simple API in node js and using MS SQL as a data source on which we are going to perform CRUD operation.
- Xamarin.Forms Application For A ScrollView Multiple Circles ImageApr 21, 2018. This article demonstrates how to create a Xamarin application for a ScrollView Multiple Circle Image. Xamarin is a platform that allows us to create a multi-platform mobile application for platforms, like Android, Windows, and IOS through a single integrated development environment (IDE).
- Creating Your First Project With DjangoApr 20, 2018. It's time to create our very first project in Django after setting up the environment.
- How To Create And Use Azure Cosmos DB In Xamarin.Forms Application For AndroidApr 19, 2018. Reading this article, you can learn How to Create and use Azure Cosmos DB In Xamarin Forms application using for Android with XAML and Visual C# in cross-platform application development.
- How To Create Live Templates In Android StudioApr 19, 2018. In this article, we will see how to create Live Templates in Android Studio or IntelliJ IDE products like WebStorm, PHPStorm, etc. Live Templates are very useful to increase the speed of development, efficiency and accuracy.
- Student Info In Xamarin.Forms Application Using SQLite For Android And UWPApr 19, 2018. Reading this article, you can learn how to perform local database operation in Xamarin Forms application using SQLite for Android and Universal Windows Platform with XAML and Visual C# in cross-platform application development.
- Custom Loader With Popup In Xamarin.FormsApr 19, 2018. In this article, you will learn to use Custom Loader With Popup In Xamarin.forms.
- Trigger A Microsoft Flow With A Button Click On SharePoint OnlineApr 18, 2018. Microsoft Flow is a cloud-based software tool that allows users to create and automate workflows across multiple applications and services without the need for a developer’s help and is part of the Office 365 suite. It is included in most of Office 365 subscriptions and can be accessed via Office 365 app launcher. Automated workflows are called flows and its most common usage is to trigger notifications, synchronize files & collect data. The focus of this article is to highlight how to trigger a Microsoft flow on a button click event within SharePoint Online.
- CRUD Operations In Android SQLite - KotlinApr 18, 2018. In this article, we will learn how to perform CRUD (Create Read Update Delete) operations SQLite using Kotlin, the official first-class programming language for Android development. It is very easy and similar to implement like Java. We will learn SQLite implementation by building Simple TODO Application.
- Extract Text From Image In Microsoft Computer Vision APIApr 17, 2018. In this article, you will learn to extract Text From Image In Microsoft Computer Vision API.
- Delete Item Versions In SharePoint ProgrammaticallyApr 17, 2018. Versioning in SharePoint is an awesome feature that lets users create versions of their documents. However, when left unchecked, especially when the below category of “Document Version History” is selected – an end user will be able to create practically an indefinite number of versions. This is not a recommended best practice, and may end up using a huge amount of storage over the years.
- Angular 5 - Reactive Forms With Dynamic FormArray And Simple ValidationApr 17, 2018. I am sharing an article on how to dynamically display controls in <em>FormArray</em> using Angular 5 <em>Reactive Forms</em> and enabled/disabled the validators based on the selection.
- Intraday Price-Volume HeatMap Of A Stock Using RApr 16, 2018. In this article, we will see how to create price volume heatmap of any stock ticker in R.
- Star Rating In Angular 5Apr 16, 2018. In this article, I am going to explain how can we create a Star Rating In Angular 5.
- Create Compass Using BBC Micro - BitApr 16, 2018. By the end of this article, you will know how to create a compass or how to use your BBC Micro: Bit as a compass.
- Social-Media Link Share In Android Using Android StudioApr 16, 2018. In this article, we are going to see how to create a share button in Android app using the Android Studio.
- Azure SQL Database - Create And Connect SQL Database In The Azure PortalApr 11, 2018. This article explains how to create and connect Azure SQL database to the Azure portal.
- PDF Viewer for Android Using Xamarin.formsApr 11, 2018. This article is going to explain how to create a pdf viewer inside the Android application using Xamarin forms in Visual Studio.
- CRUD Operation In Angular - Angular + Core 2.0 CRUD Operation - Part TwoApr 11, 2018. In my previous post (Part I), I explained how to do Database first in .Net Core 2.0 and we created Employee Web API by Database first approach.
- Overview Of Ticketing System In SharePointApr 10, 2018. In this article, I have explained how to create a help desk solution using SharePoint Out of The Box functionality Microsoft Flow.
- ASP.NET Core Using TypeScript (2.6) With RequireJS In C#Apr 10, 2018. This article demonstrates how to create and use an application in ASP.NET Core using TypeScript (2.6) with RequireJS (2.3.5) in C#.
- ts.validator - TypeScript Based Generic Validation FrameworkApr 10, 2018. I have created a TypeScript based generic, fluent validation framework. Also, I have built a demo Angular 5 CLI app which uses the framework.
- Dots Loading Android Using Android StudioApr 09, 2018. In this article, we are going to see how to create a Dot Loader in Android app using the Android Studio.
- Create Site Column In SharePoint From OOB And JSOMApr 09, 2018. In this article, I would like to share the steps to create site column and code to create the site column in SharePoint using JSOM. Most of us know how to create column in SharePoint list.
- ASP.NET Core - CRUD Using Blazor And Entity Framework CoreApr 09, 2018. Microsoft has recently announced the release of a new .NET web framework – Blazor. In this article we are going to create a web application using Blazor with the help of Entity Framework Core. We will be creating a sample Employee Record Management system and perform CRUD operations on it.
- WCF And ListView Insert Update And Delete Rows In ASP.NETApr 09, 2018. In this article you will learn how to edit, update and delete in ListView. First drag and drop ListView. In ListView, next open Default.aspx source code. To make a column in Listview use <LayoutTemplate>. Here first I created a table name 'Product' in my database. It contains 5 columns: ProductId, ProductName,ProductLocation,ProductQuantity, and ProductPrice.
- Integrating "Sign In With Google" Functionality To An ApplicationApr 09, 2018. This article demonstrates how to integrate "Log in using Google account" functionality to your web application. There are many ways to integrate it. Here, I will explain how to integrate using REST API. Before you can integrate Google Sign-In into your website, you must create a Google API Console project and client ID, which you need to call the sign-in API.
- Learn About Xamarin.Forms PopupApr 08, 2018. I am here with a new post on (Rg.Plugins.Popup).
- Dynamic Objects And Alternatives To ReflectionApr 08, 2018. The CodexMicroORM open source project on GitHub includes several features to help you create fast, concise .NET deliverables. One such feature is implemented in the Performance.cs file and enables dynamic (i.e. run-time) access to properties of any object – faster than what you’d get out of System.Reflection.Type. CodexMicroORM leverages this feature in several places, one being the ability to build composite objects: your existing “POCO” (plain-old C# objects), with additional optional extended properties.
- Creating Custom Pipe Using Safe HTML In Angular 5Apr 07, 2018. A pipe takes in the data as input and transforms it into the desired output. Pipes are declared using @Pipe decorator. We will create a custom pipe here, in this article. Like a filter, a Pipe also takes data as input and transforms it into the desired output.
- Pulse View In Android Using Android StudioApr 07, 2018. In this article, we are going create a Pulse View in Android using Android Studio. It is a type of library which makes the pulse view for the image as a icon.
- Wave View In Android Using Android StudioApr 07, 2018. In this article, we are going create a Wave View in Android using Android Studio. It is a type of library which makes the wave in UI. By using this, we can show the progress status in a percentage. This view is widely used in mobile apps.
- Xamarin.Forms Application For Social Media Link SharingApr 06, 2018. This article demonstrates how to develop a link sharing Xamarin.Forms Application.
- Create Music Remote System Using BBC Micro :BitApr 06, 2018. At the end of this tutorial, you will be able to control your phone's music player using Micro:Bit.
- Define Motion For Buttons In Android Using Android StudioApr 05, 2018. In this article, we are going to see how to create a motion button in Android app using the Android Studio.
- Xamarin.Android - Develop SQLite Database Using SQLiteOpenHelper ClassApr 05, 2018. In this article, you will learn to create your own database for Xamarin Android.
- DatePicker Placeholder And Border Style Using CustomRendererApr 05, 2018. In Xamarin.Forms, there is no Placeholder, BorderRadius, BorderColor, or BorderWidth for DatePicker Control. So in this article, we can learn how to set those properties for DatePicker using CustomRenderer.
- Create And Publish A Nuget Package Using Visual Studio (.NET Standard)Apr 05, 2018. In this article, you will learn to create and publish a Nuget Package using Visual Studio (.NET Standard).
- Multiple Button Navigation In Xamarin.Forms ApplicationApr 04, 2018. In this article, you will learn to create multiple button navigation in Xamarin.Forms Application.
- ASP.NET Core 2.0 User Role Base Menu Management Using Dependency InjectionApr 03, 2018. In this article we will see in detail how to display role based dynamic menu after user logs in. For this we will create a Menu Master table and insert few records to display the menu and URL to menu based on logged in user role.
- Button-Worked WebView In Xamarin.Forms ApplicationApr 03, 2018. This article demonstrates Button-worked WebView In Xamarin.Forms applications.
- Hide Default Tile Column From The SharePoint List FormsApr 03, 2018. In this article, I would like to share the steps hidden in the SharePoint List default list column from the display form, new form and edit form.
- Learn About Azure Data FactoryApr 02, 2018. Azure Data Factory is a cloud-based data integration service that allows you to create data-driven workflows in the cloud for orchestrating and automating data movement and data transformation.
- Automated Water Supply For CropsApr 02, 2018. In this article, we are going to see how to work with a Moisture sensor, relay module, and motors to create an automated watering system.
- How To Create Temperature Gauge Using Micro - BitApr 02, 2018. In this article, I am going to write about how we can create a simple temperature gauge
- Xamarin.Forms - ListView Header And Footer TemplateApr 02, 2018. In this article, you will learn Header Template List view in Xamarin. Forms Application. The Most of list view not have in Header templates. But if we are using more lists that time we can use this header template to display the content for Header template. So in this article we can Header , footer template and List View Items.
- Combining Angular 5 CLI Project And ASP.NET Core ProjectApr 02, 2018. Angular 5 is catching the attention of all the developers. And Dot Net Core from Microsoft is already popular. So what happens if you create an Angular project in the command line, and then you want to integrate it with Asp.Net core framework?
- Xamarin.Forms MVVM - Custom Tabbed PageApr 02, 2018. This article will explain to you how we can create our own custom tabbed page.
- CRUD Operations In .NET Core With Angular And Entity FrameworkApr 01, 2018. In this article, we will learn how to implement CRUD (Create, Read Update, Delete) operations using .NET Core (2.0) with angular and Web API with Entity Framework using Visual Studio 2017.
- Create Components In Angular 5Mar 31, 2018. In this article, we will learn what a component is and how to create components.
- ExtraTextView In Android Using Android StudioMar 31, 2018. In this article, we are going create a ExtraTextView in Android using Android Studio.
- Single Page Application Using ASP.NET Core - AngularMar 31, 2018. In this post, we are going to create a Single Page Application (SPA) with AngularJS and ASP.Net Core. We will use Angular-UI-Router for our application routing instead of MVC routing.
- Building An Angular 5 CLI Project With ngx-bootstrapMar 30, 2018. This article will demonstrate how to create Angular 5 project using CLI and implement ngx-bootstrap or Bootstrap 3 with it.
- ASP.NET Core - Getting Started With BlazorMar 30, 2018. In this article, we will understand the new .NET framework – Blazor and create a sample calculator application using ASP.NET Core and Blazor.
- Upload And Set Office 365 Profile Image Using Microsoft Graph APIMar 30, 2018. In this article, I have explained how to change your profile image in Office 365 and set it into Office 365 from SharePoint online using Microsoft Graph API.
- Implementing Blockchain Miner Rewards And Transactions In JavaScriptMar 29, 2018. In the previous article, Creating a Blockchain Using JavaScript, you learned how to create a simple blockchain application in JavaScript.
- Run And Stop Activity Indicator In Xamarin FormsMar 29, 2018. This article demonstrates the Run and Stop activity indicator in Xamarin.Forms application.
- Multiple Models In One View Using ASP.NET MVC And Entity FrameworkMar 28, 2018. In a client requirement, I needed to create a page where two forms or models exist in a single View (page), like login and registration in the same single view.
- Angular - Creating Custom Pipe(|)Mar 28, 2018. As we already know that Pipes (|) in Angular are used to transform the data before displaying in a browser. So in this article, my requirement is to filter the student record based on the value i.e. Name of the student entered in the search textbox given at the top.
- Implementing A Blockchain Proof-Of-Work In JavaScriptMar 28, 2018. In the previous article, Creating a Blockchain Using JavaScript, you learned how how to create a simple blockchain application in JavaScript.
- Image Navigatiion In Xamarin.Forms ApplicationMar 28, 2018. How to create a image navigation in Xamarin Forms application
- TN Image View In Android Using Android StudioMar 28, 2018. In this article, we are going create a TN image view in android using Android Studio.It is a type of library which makes the image touchable and movable.By using this we can move the image with a simple touch.
- Dynamic Master Detail Page In Xamarin.FormsMar 27, 2018. This article demonstrates how to create and use a Dynamic Master-Detail-Page in Xamarin.Forms, XAML, and C#. This article starts with the introduction of the Master-Detail-Page tag in XAML.
- Creating An Accounting Application With C#- Part TwoMar 27, 2018. This article is the second part of the series of Creating Accounting applications with C# Tutorial. If you didn’t read the first part, please have a look at it before continuing with this.
- Xamarin.Forms - Calendar Control in SyncfusionMar 27, 2018. In this article, you will learn about using Syncfusion Calendar Control in Xamarin.Forms.
- Create Shimmer For Image In Android Using Android StudioMar 26, 2018. In this article, we are going to see how to give a shimmer effect to an image in Android app using the Android Studio.
- Learn About Data Binding In Xamarin.FormsMar 26, 2018. In this article, you will learn about Data Binding in Xamarin.Forms.
- How To Create File Picker In Xamarin.FormsMar 24, 2018. This article demonstrates how to create a file picker in Xamarin.Forms Application.
- How To Programmatically Clear/Cancel Notifications In Xamarin.formsMar 24, 2018. This article demonstrates how to programmatically clear app notifications without clicking notifications from the notification tray in Xamarin.Forms.
- Custom Buttons In Android Using Android StudioMar 23, 2018. In this article we are going to see how to create custom buttons with different attributes such as different color, shape, size, etc.
- Step-By-Step Demo Of Creating A VNet To VNet Connection In Microsoft AzureMar 23, 2018. In this article, I am going to show you how to create a VNet to VNet connection using Virtual Network Gateways.
- Create Charts In ASP.NET MVC Using Ignite UI jQueryMar 23, 2018. In this article, you will learn to represent Data using Ignite UI jQuery Charts with MVC.
- Create A New Application In DotVVMMar 23, 2018. In this article, we will learn the step-by-step method to create your first DotVVM application in .NET Core.
- Task And Thread In C#Mar 23, 2018. The Thread class is used for creating and manipulating a thread in Windows. A Task represents some asynchronous operation and is part of the Task Parallel Library, a set of APIs for running tasks asynchronously and in parallel.
- Circle Image In Xamarin.FormsMar 23, 2018. In this article, we will learn to make an image circle using Xam.Plugins.Forms.ImageCircle plugin.
- Creating A Blockchain In JavaScriptMar 22, 2018. In the previous article, Getting Started With Blockchain Using JavaScript, you learned how blockchain works. Now, the next step is to write some blockchain code and write our first application. In this video series, you will learn how to build a simple blockchain application using JavaScript.
- Step-By-Step Demo Of Creating A Point-To-Site VPN ConnectionMar 22, 2018. In this article, I am going to show you the demo of how to establish a point to site VPN connection.
- CRUD Operation In ASP.NET MVC Using Angular With Basics - Part TwoMar 22, 2018. In this article, we are going to create a Database and controller to perform CRUD operation using Angular.
- Circle Image In Xamarin.Forms Using CustomRendererMar 22, 2018. Circular images in apps are nowadays very popular in app development. Most of the applications we need to make user profile as circle image e.t.c. So in this article, we can learn how to make Image circle using CustomRenderer.
- Horizontal And Vertical Gradient Color In Xamarin.FormsMar 21, 2018. Sometimes, we may get the requirement to set Gradient Color for Layout or page. In this article, we can learn how we can set a Gradient Color for Layout or Page using CustomRenderer.
- How To Set Corner Radius For View, Layout, Cell (Grid, Stack, Listview) In Xamarin.formsMar 21, 2018. This article describes how we can set Corner Radius for Control or View or Layout.
- Creating Accounting Application With C# Tutorial - Part OneMar 21, 2018. In this article, you will learn to create an Accounting Application with a C# Tutorial.
- Step-By-Step Demo Of Creating Azure Virtual Network, Subnets And Network Security Groups - Part ThreeMar 21, 2018. In this article, I am going to show you how to create Azure Virtual Machines, Subnets and Network Security Groups.
- How To Create A Team Project Using Visual Studio Team ServicesMar 20, 2018. In this article, we will learn to Create a Team Project using Visual Studio Team Services.
- Step-By-Step Demo Of Creating Azure Virtual Network, Subnets And Network Security Groups - Part TwoMar 20, 2018. In this article, I am going to show you how to create Azure Virtual Network, Subnets and Network Security Groups.
- Xamarin.Android - Chat Application Using Firebase - Part TwoMar 19, 2018. In this part, I will be completing the remaining process of creating a Chat Application using Firebase.
- Step-By-Step Demo Of Creating Azure Virtual Network, Subnets And Network Security Groups - Part OneMar 19, 2018. In this article, I am going to show a step by step demo of how to create Azure Virtual Networks, Subnets and Network Security Groups.
- Angular Forms - (Model Driven Forms/Reactive Forms )Mar 19, 2018. In this article we are going to talk about Angular Model driven forms/Reactive forms. I have already discussed template driven forms in my previous article.
- Create Shadow For Image In Android Using Android StudioMar 19, 2018. This article will show you how to create a shadow for any type of image in an Android application using Android Studio.
- Time Picker In a 24 Hour Format In Xamarin.FormsMar 19, 2018. This article describes how we can set the 24 hour format for TimePicker Control.
- ASP.NET MVC Notes - Part OneMar 18, 2018. There is a lot of changes in the web form and MVC you will come to know or you will observe the changes while you start working on Asp.Net MVC.
- Three Steps To Install Angular And Create Your First Hello World Angular AppMar 17, 2018. Before creating our first Angular app first we’ll see how to install Angular on a Windows system.
- Getting Started With ASP.NET Core 2.0 Identity And Role ManagementMar 17, 2018. In this article, we will see in detail how to use ASP.NET Core Identity in MVC Application for creating user roles and displaying the menu depending on user roles.
- Angular Forms (Template Driven Forms)Mar 16, 2018. In this article we are going to talk about Angular2 forms.
- Creating A Virtual Switch In Hyper-VMar 16, 2018. A communication channel for virtual machines with each other is defined via virtual switch, so virtual switch can be defined as a program that enables virtual machines to communicate. It actually binds the physical machine network's adapter with a virtual host.
- How To Apply ToolbarItems Navigation In Xamarin.Forms ApplicationMar 15, 2018. This article demonstrates ToolbarItems Navigation bar in XamarinForms.
- Creating A Virtual MachineMar 14, 2018. A virtual machine is a software computer that runs like a physical computer.
- Managing WordPress Site On Microsoft Azure Web AppMar 13, 2018. In this blog, we will learn how to create, install & customize WordPress websites with Microsoft Azure Web App.
- Cascading Dropdown List Of Country, State And City Using MVC, Web API And jQueryMar 12, 2018. Today, in this article, I will explain how to create a Cascading dropdown list using MVC, Web API and jQuery.
- Kick Start With Azure Cosmos DB - Part TwoMar 10, 2018. In this article, we will learn how to create a new Azure Cosmos DB for free. How? Can we use it for free? I have found a couple of alternative ways to use the Azure Cosmos DB for free without an Azure Subscription.