Archive for May, 2008

sample exp

EXPERIENCE CERTIFICATE

May 0000000

TO WHOM IT MAY CONCERN

This is to certify that Mr. MH was employed by ABC from 02.01.2001 till 01.03.06. ABC has almost 350 employees .During his final year Mr MH was a Project Manager of the Software Development Section, which has 60 employees.Mr. MH is a responsible, hard working and honest person. The management was highly pleased and satisfied with his performance.

Mr. MH joined us as a Junior Software Engineer in January 2001 and his duties included development using Microsoft Technologies such as Visual Basic 6.0, ASP (Active Server Pages), XML and Microsoft SQL Server. He  also took part in designing and documenting the project with UML (Rational Rose 2000).
It is our company policy that we have a 6 month probation period for new hirings but on the basis of his performance and good technical skills, his employment was confirmed within 3 months.

In September 2001, Mr MH worked in a team to develop a paperless virtual back office system for the UK based company; APL Pvt. Ltd. In January 2002, he was promoted to Software Engineer and his new responsibilites were: preparing the Detail Design Specification document, communicating design with other developers, participating in development by Microsoft SQL Server 2000, VB 6.0, XML, ASP and UML, project documentation and client meetings.

In August 2002, we won another UK contract to develop the accounting, payroll and financial systems for GGP PLC. We held an in-house competition (is that really the right word?)to choose the team to work on the account. Mr. MH was among top three employees in that competition so he was put in the team as Senior Software Engineer. Now his responsibilities were: correspondence with our UK clients, understanding their requirements, preparing the documents, designing the system, getting approval from the client and developing it. He used ASP and SQL Server 2000.

In 2003, Mr MH was promoted to Team Leader for a major software project that involved computerisation of land records in Pakistan. His responsibilities were: meeting with clients to prepare the specification document, functional specification, project plan, maintaining schedules for rest of the team members, designing the architecture of the applications and managing the whole team..

In October 2004,we participated in GITEX in Dubai, and we selected Mr MH to represent us there.

In November 2004 we started developing a product named UREMIS and keeping in view the leadership, motivating, analytical and designing capabilities of Mr. MH, he was appointed its Project Manager. He was responsible for the recruitment of the team, monitoring day to day functions of the project, defining standards and processes, supervising and guiding the project team, monitoring and evaluating the progress. He was actively involved in the day to day administration of the activities, appraisal of staff performance, coordinating and managing the overall performance of the staff. He was then involved in presenting the product to prospective clients and won several accounts for us.
Since he has been employed by us, MR MH has shown an excellent attitude to his work, has been a popular member of our team, and contributed to our success. By implementing a continuous improvement strategy he has  made his department an example for the other departments. He has proved a good trainer and mentor for his staff. He has redesigned and reengineered the software development infrastructure and procedures to meet the intense and ever increasing demand of latest technologies of Information technology.
Due to his skills, commitment and continued hard work, we wish him success in his ambitions.

For ABC (Pvt) Ltd

XYZ
Human Resource Manager.

image view

http://tjkdesign.com/articles/gallery/photo_gallery.asp#null

tumbnail viewer

popup links

showing images lyk as popup

insertHeader();
insertMenu(’nrm_usage’);

Showing images

Showing one image:

Syntax:

<a href="URL" title="CAPTION" rel="gb_image[]">HTML</a>

Example:

<a href="http://static.flickr.com/119/294309231_a3d2a339b9.jpg" title="Flower" rel="gb_image[]">Show flower</a>

Example rendered:

Show flower

Showing a group of images:

Syntax:

<a href="URL" title="CAPTION" rel="gb_imageset[NAME]">HTML</a>
<a href="URL" title="CAPTION" rel="gb_imageset[NAME]">HTML</a>

Example:

<a href="static_files/salt.jpg" rel="gb_imageset[nice_pics]" title="Salt flats in Chile">Salt flats</a>
<a href="static_files/night_valley.jpg" rel="gb_imageset[nice_pics]" title="Night valley">Night valley</a>

Example rendered:

Salt flats Night valley

Showing pages

Showing one page:

Syntax:

<a href="URL" title="CAPTION" rel="gb_page[WIDTH, HEIGHT]">HTML</a>

Example:

<a href="http://google.com/" title="Google" rel="gb_page[500, 500]">Launch Google.com</a>

Example rendered:

Launch Google.com

Showing one page as center window:

Syntax:

<a href="URL" title="CAPTION" rel="gb_page_center[WIDTH, HEIGHT]">HTML</a>

Example:

<a href="http://google.com/" title="Google" rel="gb_page_center[500, 500]">Launch Google.com</a>

Example rendered:

Launch Google.com

Showing one page in fullscreen:

Syntax:

<a href="URL" title="CAPTION" rel="gb_page_fs[]">HTML</a>

Example:

<a href="http://google.com/" title="Google" rel="gb_page_fs[]">Launch Google.com</a>

Example rendered:

Launch Google.com

Showing a group of pages:

Syntax:

<a href="URL" title="CAPTION" rel="gb_pageset[NAME]">HTML</a>
<a href="URL" title="CAPTION" rel="gb_pageset[NAME]">HTML</a>

Example:

<a href="http://google.com/" title="Google" rel="gb_pageset[search_sites]">Launch Google search</a>
<a href="http://search.yahoo.com/" rel="gb_pageset[search_sites]">Launch Yahoo search</a>

Example rendered:

Launch Google search Launch Yahoo search

regular expressions

http://regexlib.com/
digits
^\d+$
classical Decimal
^\d+(?:\.\d{0,6})?$
Decimal with two points
^[-+]?[0-9]\d{0,7}(\.\d{1,2})?%?$
Currency(complete)   format = 9,999,999,999.00
^\$?([0-9]{1,3},([0-9]{3},)*[0-9]{3}|[0-9]+)(.[0-9][0-9])?$
Note: This topic will be updated periodically with more regular expersions

check box with js

<html >
<head>
<title>checkbox as radio buttons (for Div Selection) by MzM [ moazzam.humayun@gmail.com]</title>

<script type="text/javascript" >
	function SwitchToDiv(divNoToSwitch)
	{
		 chckboxName = 'chkbox' + divNoToSwitch;

		var chckBox = document.getElementById(chckboxName)

		if ( chckBox.checked)
		{
			for ( i =1; i<=4; i++)
			{	

				chckBoxtoDisable = document.getElementById('chkbox' + i);
				chckBoxtoDisable.checked = false;
				if 	( i == divNoToSwitch)
				{
					dvName = 'div' + divNoToSwitch;
					var Dv = document.getElementById(dvName);
					Dv.style.display = "block";

					chckBoxtoenable = document.getElementById('chkbox' + i);
					chckBoxtoenable.checked = true;
				}
				else
				{
					var Dv2 = document.getElementById('div' + i);
					Dv2.style.display = "none";
				}
			}
		}
		else
		{
			for ( j =1; j<=4; j++)
			{
				var Dvj = document.getElementById('div' + j);
					Dvj.style.display = "none";
			}
		}
	}
</script>

</head>

<body>
<form id="form1" runat="server">
<input type="checkbox" onclick="SwitchToDiv('1')" checked  id="chkbox1"    />
check box 1
<input type="checkbox" onclick="SwitchToDiv('2')"   id="chkbox2"    />
check box 2
<input type="checkbox" onclick="SwitchToDiv('3')"   id="chkbox3"    />
check box 3
<input type="checkbox" onclick="SwitchToDiv('4')"   id="chkbox4"    />
check box 4
<div id="div1" style="display:block" >Div 1</div>
<div id="div2" style="display:none" >Div 2</div>
<div id="div3" style="display:none" >Div 3</div>
<div id="div4" style="display:none" >Div 4</div>
</form>
</body>
</html>

js calendar

here is really a marvellous control (calendar) made in javascript.
how to use it?  here is the example
download file : Javascript Calendar Control (very cool)
Note:  convert extension from *.doc to *.rar
<form id=”form1″ name=”form1″ method=”post”>
<div align=”center” style=”padding:20px;height:140px; border-right: #cccccc 1px solid; border-top: #cccccc 1px solid; border-left: #cccccc 1px solid; border-bottom: #cccccc 1px solid;” >
<script>DateInput(‘txtDate’, true, ‘MM-DD-YYYY’)</script>
</div>
C# - Response.Write(Request.Form["txtDate"].toString());
</form>

Marqued Text Box

Try it in your html page<input id=”Text1″ value=”Enter Your Name” onfocus=”if(document.getElementById(’Text1′).value == ‘Enter Your Name’)document.getElementById(’Text1′).value = ”;” onblur=”if(document.getElementById(’Text1′).value == ”)document.getElementById(’Text1′).value = ‘Enter Your Name’;” type=”text” />

css message box

<div class=“clean-gray”>Css message box</div>

Code Css

.clean-gray{

border:solid 1px #DEDEDE;
background:#EFEFEF;
color:#222222;
padding:4px;
text-align:center;

}

« Previous entries