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

Fragment Tutorial in Android

This tutorial helps you how to use Fragment Class in android Application the sample code give you the brief on how you can use an fragment class. In main Activity we have created four fragments. And use FragmentManager and FragmentTransaction...

Document type declaration

Document type declaration ( Or DOCTYPE ) What is Doctype ? The<!DOCTYPE> is not a HTML tag. It is an instruction to web browser about what version of HTML the page is written in. In HTML 4.0...

JavaScript Validation for Mobile Number in Asp.Net

JavaScript Validation for Mobile Number in Asp.Net Validate Mobile number in a web page using JavaScript validation in ASP.Net. In this example I am using one TextBox . The TextBox accepts Mobile number, it only allows 10 digit numbers. &...

Flat UI

Days are gone when web designers use to spend their time and effort creating Flashy animation and illustration filled with gradient and sparkling gif images and getting appreciation by audience, then came the trend bringing real life images wi...

Single sign on on sub-domain in drupal

We can use Bakery SSO module for single sign on in drupal 7. It works with portal or master site and sub-sites or slaves sites, it provides the following features:- 1) If login into the portal site and navigate to sub-site, user will be auto-l...

Jquery vallidator rule for filling at least one field between a group

<script type="text/javascript"> $(document).ready(function() { jQuery.validator.addMethod("require_from_group", function (value, element, options) { var numberRequired = options[0]; var selector = options...

Best way to configure hibernate 3 with spring?

Different way to configure hibernate 3 with spring? As per my knowledge There are 3 different way to configure Hibernate 3 with spring 3. Let us sort discuss on each of three configuration method and lastly conclude witch method is best. Me...

Difference between @"MM/dd/yyyy" and @"MM/dd/YYYY" in setDateFormat.

The difference may seem very small but it makes a lot of changes in the ways things work.The year when written in small letters (setDateFormat:@"MM/dd/yyyy") is the ordinary calendar and will return normal year, but in case of the capital YYYY, (...

Parsing CSV file using php SplFileObject class.

The SplFileObject class provides an object oriented interface for a file. $file="upload_file.csv"; //file to parse Steps: 1) Create SplFileObject class object to the csv file. $srcFile = new SplFileObject($file); 2)Now loop ti...

Cut image through code in mac os

Method to cut image in Objective-c/cocoa (OSX) -(IBAction)cutItem:(id)sender { hasBeenDragged = NO; NSImage *_sourceImage = [self image]; float width = selectedArea.size.width; float height = selectedArea.size.height; ...

Crop image in mac os

If you want to crop the image without changing its quality in Objective-c/cocoa (OSX) then you can use the following method -(IBAction)crop:(id)sender{ hasBeenDragged = NO; NSImage *_sourceImage = [self image]; float width = sel...

Check Null data parameter in json array or dictionary object in iPhone

If some parameter is missing in json or dictionary. For example- json = ( { "created_time" = "2013-11-18T14:40:37+0000"; from = { id = 15400100; name = "Alexandra"; ...

Create Ramdisk and take backup in oracle

Steps to create Ramdisk and take backup in oracle Install SoftPerfect Ram disk software(eg installed location is C:\Program Files\SoftPerfect) Create a .bat with following content and run it: REM stop db oradim -SHUTDOWN -SID DB_SID REM ...

Disable Auto Update of Mozilla Firefox

The steps below guide you through setting the configuration files required for Firefox to not only turn off updates, but deny the setting entirely. Also note, this is on a per computer basis. This process will need to be replicated on each compu...

How to Disable Ctfmon.exe at startup

Ctfmon.exe is a Microsoft Office process that works with the Windows operating system. This process activates the language bar and alternative user input. It is a non- essential system process which runs in the background even after quitting all ...

Generate random number of specific length in php

To generate random number of specific length let the length be 10 we write <?php $random_number = rand(1000000000,9999999999); echo $random_number; ?>

How different is creating a simple module in Openerp 7.0?

Creating a module in OpenErp 7.0 is quite different from how it has been in 6.1. Already discussed earlier to create a module in version 6.1, its time to throw some light on a basic module created in OpenErp 7.0. To start with the basic struct...

Factors To Consider For Automation Project

We should consider the following factors before starting the Automation Project: 1.Stability of the application under test If the application is not stable , it may lead to failure of many scripts during execution even though if the scripts...

How to import/export data using CSV in PostgreSQL

To export a table data from Postgres database to a CSV file, use the "COPY to" command. You can create a CSV file using MS-Excel or directly create a file from the command. Syntax: COPY (SELECT * FROM table_name) to E'C:\Users\main\Documents\...

Skipping Shipping Methods in Magento Checkout

For Remove Shipping Methods you need to change its function This code is working for me in 1.7.0.2 but you can try this for older version also A) Open Mage/checkout/controllers/Onepagecontroller.php In this File Go to on function saveBil...

Make your Content Editable:

Make your Content Editable: Contenteditable is nice feature added in HTML5. As the name clarify, it allows the user to edit any of the text contained within the element, including its children. There are a variety of uses for something like th...

Difference between QA & QC

Quality Assurance: Here the testing team define the procedures, processes, policies, standards and the checklist in the document which is going to be follow during the entire project life cycle,It is also referred as 'Verification'. Example:...

Programatically create products in Magento

public function saveproductAction() { $categoryId = $_REQUEST['catId']; $productName = $_REQUEST['ProductName']; $productDesc = $_REQUEST['productDesc']; $productPrice = $_REQUEST['productPrice']; $prod...

Preventing child element from firing on click of Parent element

Suppose, we have this html where div element have 2 child p elements and 1 child anchor element. <div> <p> I am para one</p> <p> I am para two</p> <a href="http:nowheretogo.com">I am a link<...

Beginners guide to SEO- Internal and External Linking

Links are like network bridges carrying you from one web page to the other. They can either be withing the same site or take you to a new website all together. Good link building is one of the parameters for all search engine ranking algorithms t...

Resolving File System issue on Linux

In Linux if your filesystem gets corrupted there is a command that can be used to fix the issue. To fix the file system related issues type command fsck on system's recovery console. This would fix the errors on your file system to get...

Joomla Release 3.2

New features in Joomla 3.2. As I am working with few technologies and Joomla is one of them, I thought let me update you with information regarding the new release in of Joomla 3.2. Joomla team has recently released a new version of Jooml...

Kohana issue on GoDaddy Shared Hosting

Recently while working for a project I faced an issue while making the site live. The site was developed with kohana framework and was to be hosted on Godaddy Server (Shared Hosting) and I faced a peculiar issue on the server giving me an erro...

Delete Test Sales/Order data from Magento

To **delete the test sales/Order data from magento** run the below queries in your magento database -- SET FOREIGN_KEY_CHECKS=0; ############################## # SALES RELATED TABLES ############################## TRUNCATE `sales_flat_c...

Subtract date in JS

Subtract date in javascript : - var current = new Date(); //It will give the current date and time in default format. var future_date = new Date(now .setHours(now .getHours()+48)); //in this we add 48 hours in present time . ...

Singleton Class in flex

SINGLETON CLASS In object-oriented programming , a singleton class is a class that can have only one object (an instance of the class) at a time. It's good when you only want one object across the whole of your application It is usually used...

How To Change Input Type File Title In HTML

We are change the input type file title with the help of this script Like Browse Title Change in to Choice File use this script for change Title function browseclick(){ var fileinput = document.getElementById("browse"); // use in...

Things to Take Care of While Accepting New Test Build

Here I will explain what things need to verify while accepting new test build from the developer side. Build Version#: Every build has a unique no. to differentiate from other builds and tester gives test result against that build no. Resol...

How to Create and Consume wcf service in visual studio 2010 C#.net

Steps to Create a WCF service in Visual Studio 2010 1.To create a new WCF service application project, go to File->New->Project. Then select WCF under Visual C# installed templates and then select wcf service application. 2.In the sol...

Adding and Removing Select Options

A drop-down box for colors and want to add new colors to it, as well as remove options from it. <label for="colors">Colors</label> <select id="colors" multiple="multiple"> <option>Black</options> <option>...

Remove Data from doucument Directory ios

Hello friends, I was using to document directory to save images and video and after saving a lot my app use to crash due to memory warnings. So there is a way to delete content of document directory. -(void)deleteDD { { NSLog...

Using ViewPager for Screen Slides in Android

ViewPagers have built-in swipe gestures to transition through pages You don't need to add any animation. sample code : Set your main Activity layout as: in mainactivity Layout xml file set relative layout,in it set the view p...

Instantiating Prefabs at runtime

From my previous blog,we all know that what prefabs are. Now,I want to explain how we instantiate prefabs and what are its advantages. public class preafabDemo : MonoBehaviour { var ball:GameObject; // Use this for ini...

Importing Fonts to XCode

iPhone provides number of fonts for developing the app but not all. Sometimes we need to go beyond the fonts provided by iOS sdk. Following steps will do the needful 1) Add desired font to project (It must be .tff or .otf); 2) Go to info....

Grid (lines) over image

So, this thing took lot of my time. I hope it will save yours. Here, we need a parent div and a child div. Parent div will have the image in background, I am using inline style so that one can use it in as many pages as he/she wants. Here's...

Date Picker embeded in UIActionsheet with toolbar

Sometimes a user is required to input a date in the application for example to provide the date of birth. The programmer have to make sure that the date entered by the user is in correct format that can be used by the app or the server. If a nump...

Create audio file manually

We often come across conditions where manual audio file is to be created. For example recording an audio or download audio data from server. These all need audio file in which data is to be populated. Below, I'm creating an sound.caf file and...

JMeter Parameterization by using CSV Data set Config

Parametrization can be implemented in different ways using the following elements: a)Using CSV Data Set Configuration: Steps: Thread Group > ADD > Config Elements > CSV data set Config b.)Using User Parameters: Steps: Thread Group &...

How To Connect With SQL Server DB .

Below is the C sharp code to connect with the sql data base in .net usingSystem.Data.Sql; usingSystem.Data.SqlClient; // FUNCTION TO CONNECT TO THE SQL SERVER DATABASE privatevoidconnectToSQLServer() { // SQL CONNECTION...

toString() in java

toString() method is very useful and frequently used by java developer. What is toString() ? As per java doc: 'toString() method returns the string representation of the object.' toString() method belongs to Object class, So each and every o...

Create Carnival Girl Face Illustration in Easy Steps

I am not the master in creating perfect Illustrations using Brush or Pen Tool but still I am trying to made this tutorial to help the less experienced or beginners. In this tutorial I will draw this pretty girl ;-) wearing a carnival mask. ...

How To use dataBase in Your android App

Use DataBase Helper Class in your code, Which extends the base class SQLiteOpenHelper Class Sample code package com.searchoffers.android; import java.util.ArrayList; import java.util.List; import android.content.ContentValues; ...

Adding data to jqxtree dynimacally on click of nodes of a tree using AJAX call

There might be a case where user wants to add data to jqxtree on click of each individual node. Below is the code which help us to achieve the above functionality where user can get data from JSON file or database on click of each individual tre...

Hide div by slide effect and show another div

This code is used to hide div by slding effect towards right to left and show another div by the same sliding effect on its place . <script src="js/jquery.min.js" language="javascript" type='text/javascript'></script> <script...

Beginners guide to Search Engine Optimization-Quality of content

This is the second important factor from the series in Beginners guide to SEO. As discussed before proper keyword research and tagging are important aspects of Search engine optimization, but the importance of Quality content cannot be undermined...
1 287 292
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: