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();...
Friday, September 26, 2014
Thursday, September 25, 2014
Multiple Find Replace in MS Word using C#

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...
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...
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 >
...
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)...
Saturday, September 20, 2014
Image Optimizer

Jpg Image Optimizer
Optimize your images,just select source and target folder and click on "Start Optimize"
Jpg Image Optimizer
Download it her...
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...
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")...
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...
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 ...
Monday, September 15, 2014
Auto Resume Broken File Uploader

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...
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...
Thursday, September 11, 2014
Video Watermark

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...
Monday, September 08, 2014
Text to speech in dot net

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
...
Sunday, September 07, 2014
Secure File Delete

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...
Wednesday, September 03, 2014
Resize grid automatically when resize windows in wpf
Normal
0
false
false
false
EN-US
X-NONE
X-NONE
MicrosoftInternetExplorer4
...
Spilt in C# with word and character
Spilt in C# with word and character
// Split using single character
String nms1="aa,bb,cc,dd,ee";
string[] nm1 = nms1.Split(',');
// Split using word
using System.Text.RegularExpressions;
String nms2="aa<name>bb<name>cc<name>dd<name>ee";
string[] nm2 = Regex.Split(nms2, "<name>")...
Dictionary in C#
Dictionary in C#
Dictionary is faster that ArrayList and HashTable in C#, here is the example that how to use Dictionary in C#.
...