
Search In
If we enter employee name in the Pay slip sheet All the information regarding the attendance, leaves and basic sal-expenses should be displayed .
First, You need to install hr_payroll module for this.
This is the flow you need to follow: Employee
Scrum is a software development process in which projects are divided into small different modules and they are developed and tested in a specific time, that time frame is known as sprint.
Scrum is an iterative framework for application development.
Unit testing is done by the developers team before the aplication is verified/tested by testing team i.e, execution of the test cases. Unit testing is performed by developer on the specific unit of source code assigned.The test data used by the devel
The @property and @synthesize keywords simply automate the creation of getter and setter methods,
@interface MyClass : NSObject
@property int value;
@end
@implementation MyClass
@synthesize value;
@end
The @property keyword declares the pro
Hii all...
While working with Custom Error pages I found that Custom error page usually returns the path of the error causing page in the querystring called "aspxerrorpath".
To prevent “aspxerrorpath” passed as a query string in asp.net error pages
Anonymous types is used to create new type without defining a type first
It is used in LINQ, Returns a few of read only properties while querying collection of object using LINQ
Use new keyword to define anonymous type
It is reference type, derived
4 kind of zeros are used in objective c - nil, Nil, NULL and NSNull. All of these are different with their properties. Usually in programming nil and NSNull are used in objective c and NULL is used with c/c++ statements. Type of nil is defined as "id
How To Manage Asynchronous Tasks Using the Task Object
You want the responsiveness that asynchronous programming in the Microsoft .NET Framework 4 provides, but also need your asynchronous methods to work with other code in your application.
Tasks
Lets consider a scenario where while creating cases in Suite CRM, we know that we can select the account to associate the case with. But what is required is, a contact should also be selected but with a catch that only those contacts should be availa
Loading Levels, Play,Pause and Exit in Unity 3D scene :
Example :
btn is a string.
void OnClick ()
{
if(btn=="Play")
{
Application.LoadLevel("MyScene");
}
}
Play a Game :
Time.timeScale=1;
Pause a Game :
Time.timeScale=0;
Exit from the Game
