<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Explore Yourself</title>
	<atom:link href="http://www.shopno-dinga.com/myblog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.shopno-dinga.com/myblog</link>
	<description>Technology is Global and Developed by Sharing</description>
	<lastBuildDate>Tue, 15 May 2012 10:24:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Connection between Visual Studio 2008 and SQL Server</title>
		<link>http://www.shopno-dinga.com/myblog/connection-between-visual-studio-2008-and-sql-server/</link>
		<comments>http://www.shopno-dinga.com/myblog/connection-between-visual-studio-2008-and-sql-server/#comments</comments>
		<pubDate>Thu, 19 Apr 2012 06:27:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Dot Net / Visual Studio]]></category>
		<category><![CDATA[connect C# with SQL Server 2000]]></category>

		<guid isPermaLink="false">http://www.shopno-dinga.com/myblog/?p=591</guid>
		<description><![CDATA[Open visual studio 2008/2010. Right click project-&#62;Add-&#62;Class name it dbconn.cs dbconn.cs code should looks like using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows.Forms; using System.Data; using System.Data.SqlClient; using System.Data.Sql; namespace AnalyzeFlora_VS2008 { static class dbconn { public static SqlConnection dbConnection; public static void connectSQLServer() { dbConnection = new SqlConnection(&#8220;Data Source=ADMIN-ITSD;Initial Catalog=Florabank_online;User ID=sa;Password=fsbank;&#8221;); dbConnection.Open(); [...]]]></description>
			<content:encoded><![CDATA[<p>Open visual studio 2008/2010. Right click project-&gt;Add-&gt;Class<br />
name it dbconn.cs<br />
dbconn.cs code should looks like</p>
<p>using System;<br />
using System.Collections.Generic;<br />
using System.Linq;<br />
using System.Text;<br />
using System.Windows.Forms;<br />
using System.Data;<br />
using System.Data.SqlClient;<br />
using System.Data.Sql;</p>
<p>namespace AnalyzeFlora_VS2008<br />
{<br />
static class dbconn<br />
{<br />
public static SqlConnection dbConnection;<br />
public static void connectSQLServer()<br />
{<br />
dbConnection = new SqlConnection(&#8220;Data Source=ADMIN-ITSD;Initial Catalog=Florabank_online;User ID=sa;Password=fsbank;&#8221;);<br />
dbConnection.Open();<br />
}</p>
<p>public static void db_conn_status()<br />
{</p>
<p>MessageBox.Show(dbConnection.State.ToString());<br />
//return dbConnection.State.ToString();<br />
}</p>
<p>}<br />
}</p>
<p>Now in any form call dbconn.connectSQLServer in form load. Full code of form1.cs<br />
public partial class Form1 : Form<br />
{<br />
public Form1()<br />
{<br />
InitializeComponent();<br />
}</p>
<p>private void Form1_Load(object sender, EventArgs e)<br />
{<br />
dbconn.connectSQLServer(); //Create Connection with SQL Server 2000<br />
SqlConnection dbConnection = dbconn.dbConnection;  //MessageBox.Show(dbConnection.State.ToString());<br />
}<br />
}</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shopno-dinga.com/myblog/connection-between-visual-studio-2008-and-sql-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Query for SQL server 2000</title>
		<link>http://www.shopno-dinga.com/myblog/sql-query-for-sql-server-2000/</link>
		<comments>http://www.shopno-dinga.com/myblog/sql-query-for-sql-server-2000/#comments</comments>
		<pubDate>Mon, 16 Apr 2012 15:31:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Dot Net / Visual Studio]]></category>

		<guid isPermaLink="false">http://www.shopno-dinga.com/myblog/?p=587</guid>
		<description><![CDATA[List of all the user created tables from the sql server database, SELECT name FROM sysobjects WHERE xtype = &#8216;U&#8217;; List field names of the database table, SELECT [name] AS [Column name] FROM syscolumns WHERE id = (SELECT id FROM sysobjects WHERE type = &#8216;U&#8217; AND [NAME] = &#8216;your table name&#8217;) &#160;]]></description>
			<content:encoded><![CDATA[<p>List of all the user created tables from the sql server database,<br />
<em>SELECT name FROM sysobjects WHERE xtype = &#8216;U&#8217;;</em></p>
<p>List field names of the database table,<em><br />
SELECT [name] AS [Column name] FROM syscolumns WHERE id = (SELECT id FROM sysobjects WHERE type = &#8216;U&#8217; AND [NAME] = &#8216;your table name&#8217;)</em></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shopno-dinga.com/myblog/sql-query-for-sql-server-2000/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CRUD Application using C# and PostGreSQL</title>
		<link>http://www.shopno-dinga.com/myblog/crud-application-using-c-and-postgresql/</link>
		<comments>http://www.shopno-dinga.com/myblog/crud-application-using-c-and-postgresql/#comments</comments>
		<pubDate>Sat, 31 Mar 2012 01:34:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Dot Net / Visual Studio]]></category>
		<category><![CDATA[crud c# with postgre]]></category>
		<category><![CDATA[postgre]]></category>
		<category><![CDATA[postgre with C#]]></category>

		<guid isPermaLink="false">http://www.shopno-dinga.com/myblog/?p=578</guid>
		<description><![CDATA[Connect with PostGreSQL: static string serverName = &#8220;127.0.0.1&#8243;; //localhost static string port = &#8220;5432&#8243;; // default port static string userName = &#8220;postgres&#8221;; //admin name static string password = &#8220;abc123&#8243;; //admin password static string databaseName = &#8220;right_click&#8221;; //database name string connString = String.Format(&#8220;Server={0};Port={1};User Id={2};Password={3};Database={4};&#8221;, serverName, port, userName, password, databaseName); NpgsqlConnection pgsqlConnection = new NpgsqlConnection(connString); Auto Increment [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Connect with PostGreSQL:</strong><br />
static string serverName = &#8220;127.0.0.1&#8243;; //localhost<br />
static string port = &#8220;5432&#8243;; // default port<br />
static string userName = &#8220;postgres&#8221;; //admin name<br />
static string password = &#8220;abc123&#8243;; //admin password<br />
static string databaseName = &#8220;right_click&#8221;; //database name<br />
string connString = String.Format(&#8220;Server={0};Port={1};User Id={2};Password={3};Database={4};&#8221;,<br />
serverName, port, userName, password, databaseName);<br />
NpgsqlConnection pgsqlConnection = new NpgsqlConnection(connString);</p>
<p><strong>Auto Increment Column in PostGRESql</strong><br />
data type SERIAL</p>
<p><strong>Insert Data into PostGre Table</strong><br />
string insertCommand = String.Format(sql_command);<br />
NpgsqlCommand pgsqlcommand = new NpgsqlCommand(insertCommand, pgsqlConnection);<br />
pgsqlcommand.ExecuteNonQuery();</p>
<p>http://dl.dropbox.com/u/1403404/C%23Projects/crud.rar</p>
<p><strong>Display data into DataGrid</strong><br />
pgsql_conn_bl bl = new pgsql_conn_bl(); //pgsql_conn_bl is a class where connection and crud functions reside.<br />
dataGridView1.DataSource=bl.GetAllRecords(&#8220;user_info&#8221;);<br />
and in <em>GetAllRecords(string table_name) function</em>:<br />
DataTable dtRecord = new DataTable();<br />
NpgsqlConnection pgsqlConnection = new NpgsqlConnection(connString);//connection with postgre<br />
pgsqlConnection.Open();//open connection<br />
string selectCommand = &#8220;Select * from &#8221; + table_name;<br />
NpgsqlDataAdapter Adpt = new NpgsqlDataAdapter(selectCommand, pgsqlConnection);<br />
Adpt.Fill(dtRecord);//Fill data grid.</p>
<p>Click <a title="CRUD C# with PostGreSQL" href="http://dl.dropbox.com/u/1403404/C%23Projects/crud.rar" target="_blank">here</a> to download full project.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shopno-dinga.com/myblog/crud-application-using-c-and-postgresql/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Connection between Visual Studio 2010 and PostGre</title>
		<link>http://www.shopno-dinga.com/myblog/connection-between-visual-studio-2010-and-postgre/</link>
		<comments>http://www.shopno-dinga.com/myblog/connection-between-visual-studio-2010-and-postgre/#comments</comments>
		<pubDate>Fri, 30 Mar 2012 00:45:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Dot Net / Visual Studio]]></category>
		<category><![CDATA[c# with postgre]]></category>
		<category><![CDATA[connect c# with postgre]]></category>
		<category><![CDATA[connection between c# and postgre]]></category>
		<category><![CDATA[posgre with c#]]></category>

		<guid isPermaLink="false">http://www.shopno-dinga.com/myblog/?p=572</guid>
		<description><![CDATA[Few parameters of postgreSQL(You set these during PostGreSQL Installation): serverName = &#8220;127.0.0.1&#8243;; //localhost port = &#8220;5432&#8243;; // default port userName = &#8220;postgres&#8221;; //admin name password = &#8220;abc123&#8243;; //admin password databaseName = &#8220;TestDB&#8221;; //database name Now Connection: PostGreSQL is an open source database which require additional files to connect with microsoft visual studio 2010 or 2008 [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"><strong>Few parameters of postgreSQL</strong>(<em>You set these during PostGreSQL Installation</em>):<br />
serverName = &#8220;127.0.0.1&#8243;; //localhost<br />
port = &#8220;5432&#8243;; // default port<br />
userName = &#8220;postgres&#8221;; //admin name<br />
password = &#8220;abc123&#8243;; //admin password<br />
databaseName = &#8220;TestDB&#8221;; //database name</p>
<p><strong>Now Connection:</strong><br />
PostGreSQL is an open source database which require additional files to connect with microsoft visual studio 2010 or 2008 (i am not sure about older versions).</p>
<ol>
<li>Open a project in Visual Basic C# example name <em>pgsql_conn</em></li>
<li>Download driver files from <a title="PostGreSQL Deiver." href="http://dl.dropbox.com/u/1403404/Npgsql2.rar" target="_blank">here</a>. Extract into project root folder. i.e <em>pgsql_conn</em>\Npgsql2 (where de, es&#8230; etc folder and Mono.Security.dll, Npgsql.dll &#8230;etc files reside)</li>
<li>In solution explorer of visual studio 2010/2008 right click Reference-&gt;Add Reference. Browse Tab-&gt; Select Npgsql2\Mono.Security.dll &amp; Npgsql.dll</li>
<li>Mono.Security.dll &amp; Npgsql.dll added in reference successfully.</li>
<li>Right click on project name (<em>pgsql_conn</em>) in solution explorer. -&gt; Add-&gt; Class -&gt; enter file name pgsql_conn_bl.cs(or any).</li>
<li>Open pgsql_conn_bl.cs class and write code as <a title="connection class C# with PostGreSQL" href="http://pastebin.com/u2w5pxd0" target="_blank">show</a>.</li>
<li>Now use this line of code <em>pgsql_conn_bl x = new pgsql_conn_bl();</em> where you want to make connection with postgresql.</li>
</ol>
<p>That&#8217;s all about connection.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shopno-dinga.com/myblog/connection-between-visual-studio-2010-and-postgre/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>c# dot net sample code</title>
		<link>http://www.shopno-dinga.com/myblog/c-dot-net-sample-code/</link>
		<comments>http://www.shopno-dinga.com/myblog/c-dot-net-sample-code/#comments</comments>
		<pubDate>Mon, 26 Mar 2012 00:18:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Dot Net / Visual Studio]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[c# basic]]></category>
		<category><![CDATA[c# sample code]]></category>

		<guid isPermaLink="false">http://www.shopno-dinga.com/myblog/?p=566</guid>
		<description><![CDATA[Exit Application C# System.Environment.Exit(0); Load/Show a Form Form2 myForm = new Form2(); myform.show(); currentform.hide(); Change Startup Form Open Program.cs Application.Run(new Form2()); DateTimePicker Control string student_date_of_birth = date_of_birth.Value.ToString(&#8220;yyyy-MM-dd&#8221;); //output 2012/04/27 Connection with PostGreSQL hastTable(simple) Example: Link: http://pastebin.com/j6LTHmt1 (A complete example of create hastable, assign values, search by key, if not found then add that key into [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Exit Application</strong><br />
C# System.Environment.Exit(0);</p>
<p><strong>Load/Show a Form</strong></p>
<pre dir="ltr">Form2 myForm = new Form2();
myform.show();
currentform.hide();</pre>
<p><strong>Change Startup Form</strong><br />
Open Program.cs<br />
Application.Run(new Form2());</p>
<p><strong>DateTimePicker Control</strong><br />
string student_date_of_birth = date_of_birth.Value.ToString(&#8220;yyyy-MM-dd&#8221;);<br />
//output 2012/04/27</p>
<p><a title="Connect visual C# with PostGreSQL" href="http://www.shopno-dinga.com/myblog/connection-between-visual-studio-2010-and-postgre/" target="_blank">Connection with PostGreSQL</a></p>
<p><strong>hastTable(simple) Example:</strong><br />
Link: http://pastebin.com/j6LTHmt1 (A complete example of create hastable, assign values, search by key, if not found then add that key into hastable, if found then increment value by 1)<br />
<em>Create Hashtable and Assign Values</em><br />
Hashtable hashtable = new Hashtable();<br />
hashtable.Add(&#8220;Blaze&#8221;, 400);<br />
hashtable.Add(&#8220;Fiery&#8221;, 600);</p>
<p><em>Add New Key with Value</em><br />
hashtable.Add(search_me, 1);</p>
<p><em>Traverse Hashtable values</em><br />
foreach (int val in hashtable.Values) //hashtable.Keys<br />
MessageBox.Show(val.ToString());</p>
<p><em>Increase value by 1</em><br />
hashtable[search_me] = (int)hashtable[search_me] + 1;</p>
<p><strong>hastTable Example with struct type:</strong><br />
struct structMultipleValues<br />
{<br />
public int TotalNoOfAccount;<br />
public double TotalBalance;<br />
//public double LastValue;<br />
};<br />
structMultipleValues hTblVal;<br />
hTblVal.TotalNoOfAccount = 1;<br />
hTblVal.TotalBalance = Convert.ToDouble(words[1]);<br />
hashTable.Add(productCode.ToString(), hTblVal); //create an array element<br />
//traverse hashtable.<br />
foreach (DictionaryEntry gg in hashTable)<br />
{<br />
structMultipleValues tmp = (structMultipleValues)gg.Value;<br />
gg.Key, tmp.TotalNoOfAccount, tmp.TotalBalance; //values<br />
}</p>
<p><strong>DataGridView Example:</strong><br />
//Read user_info Table and Assign value to DataGrid<br />
SqlConnection myConnection = Program.dbConn;<br />
using (SqlDataAdapter mySqlDataAdapter = new SqlDataAdapter(&#8220;SELECT * FROM user_info&#8221;, myConnection))<br />
{<br />
// Use DataAdapter to fill DataTable<br />
DataTable myDataTable = new DataTable();<br />
mySqlDataAdapter.Fill(myDataTable);<br />
// Render data onto the screen<br />
dataGridView1.DataSource = myDataTable;<br />
}</p>
<p><strong>Read .htm file using C#</strong><br />
string story;<br />
StreamReader corpusPage = new StreamReader(&#8220;jbgl_02-05-2012.htm&#8221;, Encoding.Default);<br />
story = string.Empty;<br />
string s = &#8220;&#8221;;<br />
int total_line = 0;<br />
while ((story = corpusPage.ReadLine()) != null)<br />
{<br />
total_line++;<br />
s = s + story.ToString();<br />
//MessageBox.Show(story.ToString());<br />
if ((story == &#8221; &#8220;) || (story == &#8220;&#8221;))<br />
{<br />
continue;<br />
}<br />
}<br />
richTextBox1.Text = s;</p>
<p><strong>Load Combo Box in C#</strong></p>
<p>//Load product category combo box<br />
combo_product_cat_id.DataSource = myDAL.GetRS(&#8220;select id, product_category_name from product_category&#8221;).Tables[0].DefaultView;<br />
combo_product_cat_id.DisplayMember = &#8220;product_category_name&#8221;;<br />
combo_product_cat_id.ValueMember = &#8220;id&#8221;;<br />
combo_product_cat_id.DropDownStyle = ComboBoxStyle.DropDownList;</p>
<p><strong>DataTable: Display Database Table Data using DataTable(DB: PostGreSql)</strong></p>
<p>DataTable myDataTable = myDAL.GetRS(&#8220;select * from product_info where id=&#8221; + product_id).Tables[0];<br />
DataView myDataView = myDataTable.DefaultView;<br />
for (int j = 0; j &lt; myDataView.Count; j++)<br />
{<br />
strTblData += (j+1)+&#8221; &#8220;+myDataView[j][0].ToString()+&#8221; (&#8220;+myDataView[j][1].ToString()+&#8221;) \n&#8221;;<br />
}<br />
label2.Text = &#8220;Table Name: product_info \n Total Data Rows Found: &#8221; + total_row + &#8220;\n All Data:&#8221; + strTblData;</p>
<p><strong>DataTable: Display Database Table Data using DataTable(DB: SQL Server 2000)</strong><br />
Program.db_connection_sql_server(); //Create Database Connection<br />
SqlConnection myConnection = Program.dbConn;<br />
String sqlSelectTbls = &#8220;select * from interest_provision&#8221;;<br />
SqlCommand myCommand = new SqlCommand(sqlSelectTbls, myConnection);<br />
SqlDataReader myReader = myCommand.ExecuteReader();<br />
if (myReader.HasRows)<br />
{<br />
while (myReader.Read())<br />
{<br />
MessageBox(myReader["RecordCount"].ToString());<br />
}<br />
}</p>
<p><em>//in program.cs file</em><br />
public static void db_connection_sql_server()<br />
{<br />
dbConn = new SqlConnection(&#8220;Data Source=ADMIN-ITSD;Initial Catalog=db_name;User ID=sa;Password=pass123;&#8221;);<br />
dbConn.Open();    //MessageBox.Show(&#8220;Connection created.&#8221;);<br />
}</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shopno-dinga.com/myblog/c-dot-net-sample-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Passport Size Photo</title>
		<link>http://www.shopno-dinga.com/myblog/passport-size-photo/</link>
		<comments>http://www.shopno-dinga.com/myblog/passport-size-photo/#comments</comments>
		<pubDate>Sun, 19 Feb 2012 08:58:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Others]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.shopno-dinga.com/myblog/?p=561</guid>
		<description><![CDATA[Standard Photo Size(Passport Size): Width: 1.8 inc Height: 2 inc]]></description>
			<content:encoded><![CDATA[<p><strong>Standard Photo Size(Passport Size):</strong></p>
<p>Width: 1.8 inc<br />
Height: 2 inc</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shopno-dinga.com/myblog/passport-size-photo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SRC: &#8220;Nothing to print&#8221; error display for Adhoq  Query-&gt;Last 2 Menus</title>
		<link>http://www.shopno-dinga.com/myblog/src-nothing-to-print/</link>
		<comments>http://www.shopno-dinga.com/myblog/src-nothing-to-print/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 07:57:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Janata Bank Ltd]]></category>

		<guid isPermaLink="false">http://www.shopno-dinga.com/myblog/?p=551</guid>
		<description><![CDATA[Software: SRCProblem: &#8220;Nothing to print&#8221; error display for Adhoq  Query-&#62;Last 2 Menus Solution: 01. Find BranchID from Branch Table about this Branch 02. Run the following script on Query Analyzer 03. Replace XXX with Respective Branch ID not Branch Code truncate table AttachBranch; update TTItem set ParentBranchID=&#8217;XXX&#8217;;]]></description>
			<content:encoded><![CDATA[<div>Software: SRC<strong>Problem:</strong> &#8220;Nothing to print&#8221; error display for Adhoq  Query-&gt;Last 2 Menus</p>
<p><strong>Solution:</strong><br />
01. Find BranchID from Branch Table about this Branch</p>
</div>
<div>02. Run the following script on Query Analyzer</div>
<div>03. Replace XXX with Respective Branch ID not Branch Code</div>
<div>truncate table AttachBranch;<br />
update TTItem set ParentBranchID=&#8217;XXX&#8217;;</div>
]]></content:encoded>
			<wfw:commentRss>http://www.shopno-dinga.com/myblog/src-nothing-to-print/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Software needed for a Fresh Computer</title>
		<link>http://www.shopno-dinga.com/myblog/software-needed-for-a-fresh-computer/</link>
		<comments>http://www.shopno-dinga.com/myblog/software-needed-for-a-fresh-computer/#comments</comments>
		<pubDate>Mon, 02 Jan 2012 04:41:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[IT Support & Debugging]]></category>

		<guid isPermaLink="false">http://www.shopno-dinga.com/myblog/?p=548</guid>
		<description><![CDATA[The following software need to install for a new/fresh computer install Windows XP/Windows 7 Office Winrar Dreamweaver, PHP Designer Flash FXP Wamp Pidgin Firefox Firefox Extension (fission, Xmark) Avro (bangla typing software) Flash player KM Player (video player)]]></description>
			<content:encoded><![CDATA[<p>The following software need to install for a new/fresh computer install</p>
<ol>
<li>Windows XP/Windows 7</li>
<li>Office</li>
<li>Winrar</li>
<li>Dreamweaver, PHP Designer</li>
<li>Flash FXP</li>
<li>Wamp</li>
<li>Pidgin</li>
<li>Firefox</li>
<li>Firefox Extension (<a title="Firefox Extension Fission" href="http://mozilla.zeniko.ch/fission.html">fission</a>, Xmark)</li>
<li>Avro (bangla typing software)</li>
<li>Flash player</li>
<li>KM Player (video player)</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.shopno-dinga.com/myblog/software-needed-for-a-fresh-computer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Protected: To reset Terminal ID follow the instruction</title>
		<link>http://www.shopno-dinga.com/myblog/to-reset-terminal-id-follow-the-instruction/</link>
		<comments>http://www.shopno-dinga.com/myblog/to-reset-terminal-id-follow-the-instruction/#comments</comments>
		<pubDate>Thu, 15 Dec 2011 04:34:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Janata Bank Ltd]]></category>

		<guid isPermaLink="false">http://www.shopno-dinga.com/myblog/?p=542</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.]]></description>
			<content:encoded><![CDATA[<form action="http://www.shopno-dinga.com/myblog/wp-pass.php" method="post">
<p>This post is password protected. To view it please enter your password below:</p>
<p><label for="pwbox-542">Password:<br />
<input name="post_password" id="pwbox-542" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="Submit" /></p></form>
]]></content:encoded>
			<wfw:commentRss>http://www.shopno-dinga.com/myblog/to-reset-terminal-id-follow-the-instruction/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>javascript show/hide a span/div on click</title>
		<link>http://www.shopno-dinga.com/myblog/javascript-showhide-a-spandiv-on-click/</link>
		<comments>http://www.shopno-dinga.com/myblog/javascript-showhide-a-spandiv-on-click/#comments</comments>
		<pubDate>Tue, 13 Dec 2011 14:05:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://www.shopno-dinga.com/myblog/?p=537</guid>
		<description><![CDATA[onclick=&#8221;Javascript: show_hide(&#8216;district_list&#8217;,'block&#8217;);show_hide(&#8216;country_list&#8217;,'hide&#8217;);&#8221; Add a java script file as: &#60;script src=&#8221;js/custom_function.js&#8221;&#62;&#60;/script&#62; [Now the javascript File] function show_hide(id, action) { if (action==&#8221;hide&#8221;) { document.getElementById(id).style.display = &#8220;none&#8221;; } else { document.getElementById(id).style.display = &#8220;block&#8221;; } }]]></description>
			<content:encoded><![CDATA[<p>onclick=&#8221;Javascript: show_hide(&#8216;district_list&#8217;,'block&#8217;);show_hide(&#8216;country_list&#8217;,'hide&#8217;);&#8221;</p>
<p>Add a java script file as: &lt;script src=&#8221;js/custom_function.js&#8221;&gt;&lt;/script&gt;<br />
[Now the javascript File]<br />
function show_hide(id, action) {<br />
if (action==&#8221;hide&#8221;) {<br />
document.getElementById(id).style.display = &#8220;none&#8221;;<br />
} else {<br />
document.getElementById(id).style.display = &#8220;block&#8221;;<br />
}<br />
}</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shopno-dinga.com/myblog/javascript-showhide-a-spandiv-on-click/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

