For smart Primates & ROBOTS (oh and ALIENS ).

Tuesday, December 30, 2014

System properties dialog box

Real Life Coding Stuff
Problem: Sometime you are developing a software in the winform environment and yo need to to open different system properties dialog box from your software. then How to open windows System Properties Dialog box? System properties dialog box Solution: To...
Share:

Sunday, December 28, 2014

key logger

Real Life Coding Stuff
Problem: Some time you want to tack the person keyboard that what keys are stroking on that keyboard? Solution: I have developed a application, so by this application you can achieve your target. You can track user keyboard keys by this Key Logger Application. This will...
Share:

Thursday, December 25, 2014

change SurfaceView height width

Problem: change SurfaceView height width in android. You are using SurfaceView to open camera in Android. and want to set it's custom height and width. So How can you change SurfaceView height width? Solution: To change SurfaceView's custom height and width use "android.view.ViewGroup.LayoutParams" There are subclasses of LayoutParams for different...
Share:

Thursday, December 18, 2014

Set all remote host to mysql database

Real Life Coding Stuff
Problem: How to set all remote hosts to MySQL? While you  are working with remote production MySQL database, you need each time to open phpMyAdmin. It is time taking and working with it execute sql queries very slow. So you need a tool that connect with your remote...
Share:

Wednesday, November 12, 2014

How to show place in Google map

Real Life Coding Stuff
How to show place in Google map----------------------------------- 1) Create a table "latandlon" in Mysql/Oracle/Sqlserver/DB2 in which you feel easy.CREATE TABLE latandlon (  id int(11) NOT NULL auto_increment,  lat decimal(10,6) NOT NULL...
Share:

Tuesday, November 11, 2014

Exact string comparison in C#

PROBLEM: Exact string comparison in C# ,Case sensitive login in C#. Suppose you are storing login in database table as "Admin" and on the webpage or winform you are trying to compare it as "admin" then it is pass.But if you want to compare it as exact "Admin" the follow below steps: Store "admin" in database table. So "admin" and "Admin" is not same SOLUTION:  String...
Share:

Read excel file in PHP

Problem: How to read Excel 2003 or 2007 or 2010 format microsoft excel file in PHP Solution: Use  PHPExcel library to read Excel 2003 or 2007 or 2010 format microsoft excel file in PHP. Download it from it's website Example: Below the code that will read excel file. <?php require_once './PHPExcel/IOFactory.php'; $objReader = PHPExcel_IOFactory::createReader('excel2007');//excel2007...
Share:

Sunday, November 09, 2014

Extract text from docx in php

Problem: Sometime you need to store Microsoft word 2007 file's content to Database, for this you will open docx file;copy it's content and paste in webpage and click submit button then after data will store in database. it is the solution but it is not a good smart solution. Solution: The good smart solution is that you select your docx file by...
Share:

Saturday, November 08, 2014

Get Current Page Name in PHP

PROBLEM: During coding in php, some time you need to Get Current Page Name in PHP. So How to Get Current Page Name in PHP? SOLUTION: Create a file "b.php" and save below content and open in browser. you will see "b.php" as page name. <?php function getScript() { $file = $_SERVER["SCRIPT_NAME"]; $break = explode('/', $file); $pfile = $break[count($break)...
Share:

mail using PHPMailer

PROBLEM: How to send using PHPMailer SOLUTION: PHPMailer is the good option to send email in PHP. To use PHPMailer first download it from https://github.com/PHPMailer/PHPMailer extract and paste entire folder. paste below code: <?php require_once('phpMailer/class.phpmailer.php'); public function sendEMail($tto, $fFrom, $sSubject, $bBody) { ...
Share:

latitude and longitude by zip in php

PROBLEM: How to get latitude and longitude by zip/pin in php SOLUTION: Here I am demonstrating to you that how can you get latitude and longitude by zip code or pin code in php. $pin="208017"; $full_url = "http://maps.googleapis.com/maps/api/geocode/json?address=".$pin."&sensor=false"; $details=file_get_contents($full_url); $rs = json_decode($details,true); $lat=$rs['results'][0]['geometry']['location']['lat']; $lng=$rs['results'][0]['geometry']['location']['lng']; echo...
Share:

Replace in mysql

PROBLEM: How to Replace in mysql? SOLUTION: If you have a table in my sql database which having '('    ')'   or  any other character and you want to replace it then use as: UPDATE tble_nm  SET taluk = REPLACE(taluk, '(', '')  WHERE taluk LIKE '%)%...
Share:

Error while import sql file in sqlyog

PROBLEM: Sometime when you import sql file then you may surprise that error show any time.The sqlyog is the good tool to import or export mysql database, You may get error while import sql file in sqlyog. So how to tackle it? SOLUTION: This is because your insert statement is too big to execute. to solve these problem follow listed below statement: open...
Share:

Configure codeigniter in wamp 2.5

PROBLEM: If you are a PHP Developer the WAMP is a good environment. You can do the things easily with WAMP.. You can download WAMP from it's website. Recently WAMP have made many changes, in past WAMP version you simply web ste in the "www" folder and eailsy open the site. For example: While working on codeigniter with wamp server you just past the...
Share:

Friday, November 07, 2014

Show sql query in Codeigniter

Problem: While working in Codeigniter framework and execution some sql query. but the sql query result is not coming as you want. In this case there are something wrong with your sql queries. Then what you will do? the answer is that you will see the what exact sql query you are executing in Codeigniter. So how can you show or see sql query in...
Share:

Pass sql result in codeigniter view

Problem: PHP Codeigniter framework is a good MVC framework for PHP developer. While passwing result to it's view you may face the sql result problem. The problem is that you can not see sql result in the "View". You can face the belwo error: ----------------------------------------------------- A PHP Error was encountered Severity: Notice Message:...
Share:

get selected text of select from jquery

Problem: How to get selected text of select from jquery? While working in web programming sometime you need to get text from select box or combobox along with it's value. Solution: You will use .val() method to get value and use .text() method to get text from select box or combo box in jquery. Example: Use listed below code: To get value: var...
Share:

replace all space in javascript

Problem: How to replace all space in javascript? Solution: You will use "replace" method to replace in javascript Example: replace all spaces with "_" sign use: statename=statename.replace(/ /g, "_"); replace all occurance in javascript replace all spaces with "abc" sign wirh "_" use: statename=statename.replace(/abc/g, "_"...
Share:

Remove index.php in Codeigniter

Remove index.php from url in Codeigniter Just copy these listed below 4 line of code ".htaccess" file in the root directory of codeigniter framework. if you have not then create it. After this restart your Server and check it. RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule .* index.php/$0...
Share:

Saturday, October 18, 2014

Orbital chase paymentech gateway Mark for Capture

Orbital Chase Paymentech Gateway Mark for Capture Chase Orbital is one of the complex Payment Gateway. It's authorization process is very complex. Here is the code for Orbital Chase Paymentech Gateway Mark for Capture Request in PHP. You can frequently use it as free. If you want to implement Orbital chase paymentech by me then...
Share:

Friday, October 17, 2014

Download image without cURL and with cURL in PHP

 Download image without cURL and with cURL in PHP <?php // without cURL $downloadImageUrl="http://fc04.deviantart.net/fs26/f/2008/072/b/1/Frozen_Galaxy_by_Vpr87.jpg"; ////// Using without CURL $img = file_get_contents($downloadImageUrl); $file1 = dirname(__file__).'/aaa.jpg'; file_put_contents($file1, $img); ////// // with cURL $fileName=$downloadImageUrl; $header...
Share:

Extract Corrupt Zip File By Java

Extract Corrupt Zip File By Java I received an zip file from customer. I have tried to extract with WinZip, but unable to extract zip file because that zip file was corrupt. So I have tried to extract with Java Zip API and got the success. The code is listed below: I am sure that the zip file having 5% to 10% part corrupt will be unzip with this...
Share:

Google chart api 3d

Real Life Coding Stuff
Google chart api 3d Here is the simple example of Google 3d chart. just use listed below code. I have everything explained in commented. Google chart api 3d <html> <head> <script type='text/javascript' src='http://www.google.com/jsapi'></script> <script...
Share:

Multiple step OLE DB operation generated errors Check each OLE DB status value if available No work was done

Multiple-step OLE DB operation generated errors. Check each OLE DB status value, if available. No work was done If you are working with MS Access database then you encounter with the "Multiple-step OLE DB operation generated errors. Check each OLE DB status value, if available. No work was done" error. There are many reasons that produce the above...
Share:

Friday, October 03, 2014

TIFF Reader in java

TIFF File Reader If you have a multiple pages TIFF file and want to see it in java then listed below code will help you. import java.io.File; import java.io.IOException; import java.awt.Frame; import java.awt.image.RenderedImage; import javax.media.jai.widget.ScrollingImagePanel; import javax.media.jai.NullOpImage; import javax.media.jai.OpImage; import...
Share:

Friday, September 26, 2014

android.os.NetworkOnMainThreadException

android.os.NetworkOnMainThreadException if you work with android and want to get data from any url by using URL and  URLConnection you me stuck by the "android.os.NetworkOnMainThreadException" error message while run the app. To over come this run time error message you use "StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build();...
Share:

Thursday, September 25, 2014

Multiple Find Replace in MS Word using C#

Real Life Coding Stuff
Multiple Find Replace in MS Word using C# Suppose you have a Ms word file with 100s or more pages and each page have a word more than 10 or multiple times which you want to replace. In this situation you will open the doc file and open find replace box. but this is time taking...
Share:

Wednesday, September 24, 2014

use Table in itextsharp C#

use Table in itextsharp C# iTextSharp.text.Document doc = new iTextSharp.text.Document(PageSize.A4, 6, 72, 20, 16); doc.Open(); PdfWriter docWriter = PdfWriter.GetInstance(doc, new FileStream(PdfName, FileMode.Create)); docWriter.StrictImageSequence = true; PdfPTable table = new PdfPTable(1); table.TotalWidth = 550f; table.LockedWidth = true; for(n...
Share:

Sunday, September 21, 2014

Thin border table in html

How to create Thin border table in html: Use following html code to create Thin border table in html. <table cellspacing="0" cellpadding="1" style="border-color:Black;border-width:1px;border-style:Solid;height:108px;width:100%;border-collapse:collapse;" rules="all" >   <tbody>     <tr >      ...
Share:

Get cookies in java

How to get cookies in java import java.io.*; import java.net.*; public class CO {     public static void main(String ss[]) {      try {              String url="http://www.mywebsite.com/anything.do";               HttpURLConnection conn = (HttpURLConnection)...
Share:

Saturday, September 20, 2014

Image Optimizer

Real Life Coding Stuff
Jpg Image Optimizer Optimize your images,just select source and target folder and click on "Start Optimize" Jpg Image Optimizer Download it her...
Share:

Friday, September 19, 2014

How to use Limit in ms access sql query

How to use Limit in ms access sql query use below ms access sql SELECT TOP 90 PERCENT * FROM tablenam...
Share:

Load image in picturebox in C#

Load image in picturebox in C# How to load image in picturebox in dot net C# winform, Listed below code will solve your problem. pictureBox1.Image = System.Drawing.Image.FromFile("ImageNameWithFullPath")...
Share:

Get height width of image in C#

Get height width of image in C# You can simply get image's height width in C# with only one line of code: the code is : int h = System.Drawing.Image.FromFile("ImageNameWithPath").Height; int w = System.Drawing.Image.FromFile("ImageNameWithPath").Widt...
Share:

SQL query for two column from and to with same value

SQL query for two column from and to with same value Suppose you are developing a software, you have a database table with following structure: zip_id from_zip1 from_zip2 ship_cost 1         0         100         40 2         101      ...
Share:

Monday, September 15, 2014

Auto Resume Broken File Uploader

Real Life Coding Stuff
Auto Resume Broken File Uploader With Progress Bar Internet connection broken is the very common problem with of all us. When clients are upload large (GBs size) file via web page, they need uninterrupted internet connection supply. If internet connection breaks, then need...
Share:

Sunday, September 14, 2014

MS Access alphanumeric column sorting as number

Alphanumric column sorting as numeric in MS Access You have Ms Access Database table as listed belwo: ------------------------------------------ id,p_num, city,branch ------------------------------------------  1,P1,a,b 2,P9,c,d 3,P19,e,f 4,P2,g,h 5,P111,i,j 6,P100,k.l 7,P10,m,n 8,P7,o,p ------------------------------------------ Now you...
Share:

PDF file merge

Real Life Coding Stuff
Normal 0 false false false EN-US X-NONE X-NONE MicrosoftInternetExplorer4 ...
Share:

Thursday, September 11, 2014

Video Watermark

Real Life Coding Stuff
Video Watermark Add Subtitle ( Watermark in video ) in your video by this software. Currently this support .AVI, .FLV and .MOV format. I have created it in "Dot Net Framework 4 Client Profile", So  needed to download  .Net Framework 4 Client Profile from Microsoft...
Share:

Monday, September 08, 2014

Text to speech in dot net

Real Life Coding Stuff
Text to speech in dot net Enjoy text to speech,just download this application. To run this application you need to install Dotnet framework 3.5 Download here: http://agalaxycode.blogspot.com/2015/03/text-to-speech.html ...
Share:

Sunday, September 07, 2014

Secure File Delete

Real Life Coding Stuff
Secure File Delete Privacy is very important in our real life and information technology. If you have a very important file and after some time you want to no one can see this file content, So what you will do in this case? You will say simple answer, “I will delete that...
Share:

Wednesday, September 03, 2014

Resize grid automatically when resize windows in wpf

Normal 0 false false false EN-US X-NONE X-NONE MicrosoftInternetExplorer4 ...
Share:

Ads Inside Post

Powered by Blogger.

Archive