
Search In
In the following blog, we will learn how to setup your machine to get started with Visual Studio Code and .NET Core. We'll also create a simple ASP.NET Core Web application to get a glimpse of how to execute tasks using commands provided in Comma


Bitbucket is a hosting service which is used to store source code of any application and code reviews. We can store source code of the application in bitbucket with the help of repository. The repository is used to store source code and any further m
A lot of people today choose to stay at home and work. Mothers who need to take care of children to those who are planning to travel and bring work with them, these are just some individuals who usually opt to work at home. In the US,
If you want to build a website in Odoo follow the below mentioned steps:-
Step-1 Go to Settings->Modules->install Website Builder Module.
Step-2 Go to website Menu -> Click on Content button.
Step-3 After that edit the Menu and add the
Hello All,
Working with Windows form application using C# while developing desktop application, many times we need to show the folder structure in TreeView control, and to do that we have the following code :
private void btnShow(object sender, E
To use a background worker class in C#
1- Create an Instance of Background Class
BackgroundWorker bgw=new BackgroundWorker();
2- Create an event handler for the background worker's DoWork event
private void backgroundWorker_DoWork(object s
What if you want to build the iPhone app with iOS sdk 6.0 and want to use some method of iOS sdk 7.0?
There is no such way in Xcode to build the app using two different versions of iOS sdk.
If you use any method which is available only in iOS 7.0
To get weekend list for a current year, write the following code:
private ArrayList weekendList = null;
public void findWeekendsList()
{
weekendList = new ArrayList();
Calendar calendar = null;
calendar = Calendar.getInstance();
// T
Sometimes we might need to filter a list of records. For instance : We have an array of employees and we want to get all employees who live in the city Dehradun.
Here is the structure of Employee class :
@interface Employee : NSObject
@property (n
Inheritance in Objective C can be done by Subclassing. Here is an example of inheritance that works in objective-c.
**In Rectangle.h**
@interface Rectangle: NSObject
@property (nonatomic) int width;
@property (nonatomic) int height;
-(Rectangle
