
Search In
From here you can learn to include or integrate .so files into your code. Files that contain the .so file extension are most commonly used for shared library files. Programs written in the C and C++ language load a shared library when they are launch
Hi Friends. My "Hello World" blog in MVC is taking some time ,so I thought that I should share some performance tips here. Some of them are followed by code and explanations and I believe that you'll find them useful.
Static Methods are Faster than
Hi Friends!
Often we need to loop through the controls (collection of TextBlocks in) to and find them by their types. We can find them in this way:-
object control= LayoutRoot.FindName(txtname.Text);
if (item is TextBox)
{
TextBox
Hi again,
Here we are going to learn how to insert data in the already created table in android SQLITE. You will find it useful if you are aware of the basic terminology of the android SQLITE, if not and you want to create a table so it will be bett
Hello Reader's if want to generate the date selector then you can use the Javascript. By choosing JS you don't have to write every month, day or date hard core in the code.
Lets start to generate the code for it.
Step 1: Create head section in your
JSON is used to make a key value or collection pair of values while performing transfer of data.
So i am inserting values into database using ajax call in which i first have created a user class for defining entities
Ex:
public int id;
Panel control is works as a container for static text and other controls or we can say that it acts as a parent for other controls in a web page. It displays or hides the other controls as per the need of the program.
Uses of panel control:-
1.Gener
This question is asked a lot in interviews, so here some of the methods by which one can get the second highest salary of an employee from a table.
Suppose the Employee is like this
ID
Name
Salary
Table: Employee
1
P
The preprocessor are the directives, which gives instruction to the compiler to do something before execution.
C++ supports various preprocessors like #include, #define, #if, #else, #line, etc.
The #define Preprocessor
This d
One of the New Feature of PHP 7 is Null coalescing operator :
Generally we use to check variable value existence and if it does not exist then we use a default value for that. Normally for these type of small checks we use Ternary opera
