
Search In
In OpenERP first, install the sale and account module so that users can transfer one bill to another bill.
Follow these step given below:
Step1- First create own module and then create file like as merge.py file and pass this file in your __init__.
Following code will help you to create dynamic UITableViewCell w.r.t to its content of message.
-(void)setChatData:(ChatMessage *)messageObj memberDict:(NSDictionary *)memberDict isCurrentUser:(BOOL)isCurrentUser{
NSDictionary *userDict = [m
Sharding is a method for storing data into multiple distributed machines. Database systems with large data sets and high throughput applications can challenge the capacity of a single server. To prevent this MongoDB Sharding concept used.
In Shardin
Laravel 4.x provide n number of sending email library such as mandrill,sendgrid etc. These all library are used to send bulk email. To use Sendgrid in our Laravel project we have to follow few steps. By this way we can implement Sendgrid in our Larav
If you want to create a function to Show SMS on your device check below simple example. Here I have created a ListAdapter, by using this class sms will be showing on list and in this I have also created a SmsFormat class In which I have set value dat
For doing search in C we use linear search a very simple and common searching process used for finding elements inside the array.
Linear search is also called as the sequential search.
Linear Search Algorithm
Lin
Simplification of bug report data:-
The sequence of actions that are applied on the software to reproduce the defect or bug, actually defines the way to get to the problem. A tester may detect a number of bugs during the testing session, however, if
Write a file Using Php
In PHP, there are many functions available which is used to write a file.
The functions are...
fwrite(), fputs(), file_put_contents
Syntax:
fputs-
fputs($file,$string,$length);
fwrite-
fwrite($file,$string,$length);
T
Brute Force Attack
A Brute-force attack is a technique(Procedure or Method) for obtaining or finding-out information by trying every key combination in an effort to find an unknown value and to try a large number of possible values by using an autom
Sometimes we may face a situation when we need to remove objects from an array while iterating through the same array. We cannot remove elements from the same array on which we are fast enumerating (for in loop). And if we use the traditional "for lo