how to improve performance or faster of Visual Studio 2015
In this blog I am going to write some tricks and techniques by which we can make our visual studio 2015 more faster. In fresh installation of visual studio it works perfectly and faster but sometime after when we created many applications then the performance of...
read moreProject.json in asp.net core 1.0
Project.json Use of project.json is to store metadata ,compilation information and project dependencies. It is replacement of ASP.NET 5 package.config and we store all the package information whichwe want to use in our application . we use JSON notation to feed all...
read morestartup.cs class in asp.net core
Startup.cs Startup.cs file is called by the main program which is existed into the program.cs.startup.cs which is the mandatory file in asp.net core application without that file asp.net application cannot be executed and first asp.net framework see the configuration...
read moreasp.net core 1.0 introduction
About asp.net core 1.0 ASP.NET Core is a new open-source and cross-platform framework.It helps to create cloud based web apps, IoT apps and mobile backends . ASP.NET Core is no longer based on System.Web.dll. It is based on Nuget packages. It includes a special MVC...
read moreswing java tutorial
what is swing in java Swings Part of Java Foundation classes Swings provides the GUI component in Java window application. Swings GUI components are very light weighted and platform independent Swings components are developed to overcome the awt component drawbacks....
read morejava frames example
Java frames plays important role of GUI creation as we know that it is a old concept which was introduced in Java 1.0 but the concept of Java frames can be used in swings so that here I am taking a very simple example of Java frames . I am taking radio buttonsm list,...
read moreExample of JColorChooser in Java Swings
JcolorChoose is a component of Java Swings which is used for choosing color from GUI application. import javax.swing.*; import javax.swing.event.*; import java.awt.*; import java.awt.event.*; class MainClass extends JFrame implements ChangeListener { JColorChooser...
read moreJava Swings tutorial with example
In this example , I have taken Java swings components like Jpanel, JFrame, JButton, JRadioButton , JCheckBox, JCombobox and Jlabel.This is an simple registration form. import javax.swing.*; import java.awt.FlowLayout; import java.awt.event.*; public class MainClass...
read moreSuper KeyWord in Java
Super KeyWord in Java Super:- Super keyword is used to Call the Super class variable. Call the super class constructor. Call the super class methods. 1. Call the Super class variable : Its mandatory to use when derived class variables and base class variables names...
read moreHiding of Base Class member variable from sub class in java
Hiding of Base Class member variable from sub class in java If a super class and sub class have members with the same name then super class members are still inherited but they are hidden by the member of sub class. We can access them by qualifying with keyword super....
read moreUse of private member variable of super class in subclass.
Use of private member variable of super class in subclass What you will learn? How to access private member variable of parent class into child class. Hiding super class variable. Some Important factors An inherited member is that member of base class that is freely...
read moreObject Oriented Programming in JAVA – Inheritance
Object Oriented Programming in JAVA - Inheritance What is Inheritance? The main purpose of the inheritance is code extensibility whenever we are extending automatically the code is reused. In inheritance one class giving the properties and behavior and another class...
read moreConstructor Calling in Constructor function in JAVA
Constructor Calling in Constructor function in JAVA Basic Idea of Constructor Constructor in java is a special type of method that is used to initialize the object. Java constructor is invoked at the time of object creation. Ex Test tobj=new Test(); Rules of Java...
read moreCascade Dropdown in angular, asp.net mvc and EF
Cascade Dropdown in angular, asp.net mvc and EF In this video tutorial, I explained that how we can create cascade dropdown list using asp.net mvc , angularjs and Entity framework. you may download source code Download Source...
read more$http Service get method in Angularjs and asp.net mvc
$http Service get method in Angularjs and asp.net mvc What is $http service $http is an AngularJS service for reading data from remote servers. This service make communication with the remote HTTP servers via the browser's XMLHttpRequest object or via JSONP. Methods...
read moreJava Classes and Objects
Classes and Objects Class Definition A class is prescription for a particular kind of object. Objects can be created using the class.Object can access all the member variables and methods(Depends on the acess modifiers) A class have two things- 1.Fields :-...
read moreArrays in JAVA
What is Array Array is collection of similar primitive data types, object reference or collection of other array. All java array are treated as objects. We can construct java array using new keyword. All java array elements are initialized by their data type ‘s...
read moreStatic Variables in JAVA
if you declare any variable as static, it is known static variable. The static variable can be used to refer the common property of all objects (that is not unique for each object) e.g. company name of employees,college name of students etc. The static variable gets...
read more