Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 

Use Your Talents

We often hear people talk about how they wanted to be ready to improve, be more innovative, or have certain abilities that another person has. Rather than envy the talents of others, it would be significantly more useful on the off chance that so...

True Leadership - Distinct Qualities

Ever pondered what's that something unique that makes a leader stand out amongst thousands around? Why do people feel polarized by that spirit who you feel bound to call a leader? What's that moxy/charisma such an identity holds which kee...

Seven Steps To Success

The key to financial and self satisfaction in life is embedded in a seven lettered word: SUCCESS. This must be accomplished by consciously developing and fitting these seven principles of success. These components of success highlighted in this a...

How to give border color to UIButton in objc and Swift.

To give border color to UIButton :- 1. Take UIButton as property . 2. Give corner radius and corner width to UIButton. 3. Now give border color to UIButton. For Swift use :- demoButton.backgroundColor = UIColor.clearColor() demo...

Object Cloning

Object Cloning: Cloning means to create exact copy of an existing object. To clone a object we have to implement  java.lang.Cloneable interface by that class whose object will be cloned. clone() method is defined in Object class. Examp...

How to check Project web app settings using PSI in SharePoint

Whenever we create new site in SharePoint site collections its default settings is "SharePoint Permission Mode". But to create Groups, Categories, Security Templates,User Sync Settings,Delegates and so on we require "Project Permis...

Apply mutations on the user's saved selection and report back to the client in OpenERP

In OpenERp we first create report of the client and apply mutations on the user's saved selection of the search domain to be processed. The domain is only processed if no ids are present. If both domain and ids are missing, this will lead to ...

What is $rootScope and how is it related with $scope?

$rootscope is the parent of all scopes. Values exposed there will be used in all controllers and templates. It acts as a parent object of all “$scope” angular objects created in a web page. Now, let us understand how the “$ro...

How to add comment using php & jquery without page refreshing

Hello Reader's!Comments is very useful for your website where users can give there feedback suggestion and discuss problems with us so for that i have decided that to create a comments system in jQuery where page cannot reload but your commen...

How to create anticipate Image animation function in android

In the below example I have created anticipate Image animation function. Here I have added Button and ImageView in actvity_main.xml layout then I have created new directory (anim). In anim directory I have created anticipate.xml layout and In Mai...

How to detect whether the android device has Internet connection or not?

If your android app is dependent on internet then you need to check whether your device is having internet connection or not at the starting of your app, so to check the same copy the code below :- To know the Network state in your app you nee...

How to configure extra plugins in jmeter ?

There are many times we have to use some features in Jmeter that are not present in Jmeter, so we have to install some additional plugins to use those additional features. These features can be like JSON Path Extractor, AutoStop listener, etc. ...

Difference between Import and Static Import in Java.

Import To access classes of one package in another package i.e use external classes without package qualification import feature is used. The classes and interfaces of one package are accessible in another package using impo...

Lazy Loading vs Eager Loading

Hi Team, Today I will explain Lazy Loading and Eager Loading. Firstly we will explore Eager Loading. Eager Loading is the process of loading the related data. We will use Include keyword to load the related data. Let us take an exampl...

How can used Static JSON Parsing in Android

 In the below example I have created  Static JSON Parsing program in android. First I have added two TextView within RelativeLayout. In MainActivity I have used JSON object and JSON array JSON object within curly bracket ({)  and J...

Type conversion in PHP

To convert variables of one type to another is known as type conversion. There are two types of type conversion: Implicit type conversion Explicit type conversion Implicit type conversion  : It automatically converts the da...

Jquery Ajax exapmle in php

Here in this blog i have shown  a simple example how to use AJAX to send and retrieve data from a PHP page and then populate the result from a PHP page in a HTML element. The example here shows when I select a country a request is send to...

Static Import in Java

Static Import Static import feature was introduced in Java 5. The functionality provided by static import is it allows a class to access static members of another external class directly without qualifying it with the class name as if it ...

Open, Read, Append and Close file

OPEN FILE-  fopen() In php file is opened by the fopen() function. The fopen() contains  two parameters. The first parameter of fopen() holds the name of the file to be opened and second parameter indicates the mode in which file is ...

How to populate options in select in angularjs with example

The dynamically generated option in the select box with angularjs is done with the following code : We can populate the options inside the select box and on selecting any value from the select box it reflect to some event. It will sh...

How to resolve error "PJClientCallableException: WSSWebAlreadyExists" in SharePoint 2013

A new method is introduced in CSOM is CreateProjectSite() When we try create to create Project Site using this method, sometimes we get this error "PJClientCallableException: WSSWebAlreadyExists" which means the project site we try to ...

How to Convert Currency in PHP with Google?

Hello Reader's! In this blog i m going to show how you can convert currency using PHP, first u need to create index page where u can define field for conversion.. index.php <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://...

To display the server time in the input box with the help of ajax

Here we are making two simple text box one for the name which is filled by the user and the other is the input box for the time which is automatically called with the help of jQuery-ajax. First of all we make a simple form with two input fields o...

How to sort column by clicking on column header iin PHP

Below code will gives us a table on which when we  first time click the headers of column, it display data in ascending order.  if we click the header second time than it display values in descending  order.   <?php...

How to create Opens Wiki Page of Group in OpenERP

In  OpenERP to create opens wiki page first you have to create the current row and than the current user’s ID for security checks. user ID find List of open wiki group’s IDs and also maps the dictionary of open wiki window on giv...

Covariant Return Type in Java

Covariant Return Type in Java This feature of Java allows overridden methods to have different return types. Before Java 5.0, overriding a method a concept used in inheritance in which subclass can have same method as provided in sup...

Boxing and Unboxing

Hi Team, Today i will explain Boxing and Unboxing in C#. C# Type system mainly divided into 3 parts:- 1. Value Type 2. Reference Type 3. Pointer Type bool,byte,char,decimal,double,float,int,long,short are the value types stru...

Image slides using ViewPager

To show slides of images, we use ViewPager in android that provided by the support library. First of all add images that we want to show in drawable folder. Then create array of these images. private int[] mResources = { ...

Appending data to a blob

Microsoft has introduced a new blob type, CloudAppendBlob for appending data to an existing azure blob. It has the method AppendFromByteArray which appends data to the tail of existing blob. We need to use CloudAppendBlob type ...

Retrieving message from an azure queue

In my previous blog, I had explained how to add a message in queue. Now here is the sample code to read the message from a queue     CloudStorageAccount storageAccount = CloudStorageAccount.Parse(RoleEnvironment.GetConfigur...

Printing something without using main method

Printing hello without using main method: We can use static block to print something without using main method as static block executes as soon as the class is loaded. To ignore exception "System.exit(0);"  is used which termina...

Adding a message in an Azure Queue

Azure queues are helpful in background processes. It provides reliable messaging solutions for independent asynchronous communication between components in application. Here is a sample code for adding message in a queue   //Create ...

How to create print template of the survey in OpenERP

In openerp to create print template of the survey means that first check response or survey and if response is available then print this response otherwise print survey form and the current row, from the database cursor and also the current user&...

Bind RSS Feeds to Repeater Control

Hi All, RSS feeds are the Rich Site Summary feeds, benefit users who want to receive timely updates from favorite websites or to aggregate data from many sites. Here i am using ABC News RSS feeds to get the news Update. A particular RSS feeds ...

How to create Picking List when planned date if it is greater than value in OpenERP

To create the picking list of User defined argument and to the calculates planned date if it is greater than value and than if condition is true and its also user defined argument so you have to validate the Name of field and also Value of field ...

How to fetch data from database in PHP

For fetching data from database  in php, first we have to create a connection from database by using following code.   <?php $servername = "localhost"; $username = "root"; $password = "pass"; $database = "demo"; //this wi...

AngularJS http (ajax)

AngularJS has provided a $http service that works as an ajax call in jquery. It performs a function of reading data from the server. $http makes a call to the database and retrieves the desired data or records. How to use? 1. you need to in...

jquery validation method

jquery validation is a pattern of checking of input desired code user need a standard library of validation method and include the file into the same folder. it is a process of ensuring that computer input is clean and correct by using the rules ...

How to to use Array object sorting method in java

 In the below example I have used ArraySorting method to sorting array object. Here I have initialized Object array and then I have used Array sorting method and java.util.Arrays.sort(Object[]) method to sort object ArrayList. You can see b...

jQuery Ajax data types

The type of data you expect to get back from an Ajax request in jQuery generally requires some instruction.  By the method name the data type is specified and in different cases it is provided as part of a configuration o...

Difference between PHP4 and PHP5

PHP is a server side scripting language which is used to create dynamic web pages. PHP5 ia an updated version of PHP. PHP4 is no longer developed. There are some additional features in PHP5 due to which it is used widely. Some features a...

How to create project site using rest API in SharePoint

Every project have its own SharePoint sites in which each project has its own documents, tasks,project details,Deliverables, issues and so on. For creating that sites first we have to set permissions from settings.First go to PWA Settings > C...

CSS Combinators

Combinators are used to define the relationship between the selectors.  There are four different combinators in CSS3: descendant selector (space) child selector (>) adjacent sibling selector (+) general sibling selector (~)...

What is Daemon thread in java ?

In java any thread can be a Daemon thread. Basically daemon thread are those that works in background to support or to provide services for users threads running in same process. If there are no any user threads available while daemon threads ...

What Is Benchmark Testing In Software Testing ?

Benchmark Testing:- Generally benchmark testing is a fragment of the SDLC (Software Development Life Cycle) which includes to the both DBA (Database Administrator) and developers or programmers to identify the latest performance and renovates ...

How to create CollapsingToolbar function

In the below example I have created Collapsing Toolbar function. Here I have created CoordinatorLayout and created all layout in CoordinatorLayout. Now I have added AppBarLayout, CollapsingToolbarLayout, ImageView, Toolbar, RecyclerView and Float...

Display:none vs Visibility:hidden

Display:none doesn't display the elements on the page and  doesn't  occupy any space. For example :  <!DOCTYPE html> <html> <head> <style> </style> </head> <body...

How to Compute stock value and stock quantity in product stock in OpenERP

When we create the product(real and virtual) and computes the stock value and quantity of product in stock and validate than the product(real and virtual) is also maintained in the stock and updated in warehouse and also returns the dic...

Implementation of insertion sort in java

In java we have different sorting algorithm for insertion of element in an array. Let's talk about insertion sort today insertion sort is a uncomplicated algorithm, it raise the ultimate sorted array one item at a time. It is less coherent on...
1 118 269
Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: