
Search In
Create backup for the database first.
Restore again in a new database, with whatever name or with new financial year succeeding the name.
Now perform the following tasks:
delete all the sales order from the sale_order table.
delete all
Sometime we face issues in reindexing like "Some problem with reindexing process" error, there are many reasons for it -
1) maximum execution of script
2) number of products in database and store view
3) locked files of previous process
To get
Hello Reader's. If you have given a date and you just need to add or subtract number of days from it then you can use the code below:-
var SubDays = 15;
$.datepicker.formatDate('yy/mm/dd', new Date() - SubDays) ;
Or you can also calculate as follo
If you want to make a functionality that can be used anywhere in the code. For example, you want some method that can be called on the jquery selection and it can perform number of operations on the selection. For this, you can write a plugin.
For e
This tutorial describe you how to make a call from your android application.
To make a call you just need to call Implicit intent like this:-
// call implicit intent with phone number to make a call
Intent callIntent = new Intent(Intent.ACTION_CALL)
A function that call itself is known as *Recursive Function*. Recursive function keeps calling itself. We have to set a condition that will stop it, otherwise it will run infinitely. This condition is known as a base case. Basically, base case tells
To initiate a skype call through your android app please add the code mentioned below :-
The third line
Uri skypeUri = Uri.parse("skype:" + number + "?call");
in the code below helps you to make call but if you need video call then
In ADO.NET while performing manipulations and crude operations with the SqlDataAdapter you can do it with number of ways.
One way is the use of command builder class meant for this purpose.
A CommandBuilder object resuces the load o
Here is the method in ios that can clip an audio file(i.e MPMediaItem) with the time interval.
In below mentioned method, For time interval we are sending two parameter first is startinterval which is the interval form where we wanted to start clipp
In OnCreate() Method add addTextChangedListener(new TextWatcher() to an EditText View
example:
searchEditText.addTextChangedListener(new TextWatcher() {
@Override
public void onTextChanged(CharSequence s, int start, int
