				QuickSearch
---------------------------------------------------------------------------------------
 Authour: MANESH.P				       Contact: manesh77@rediffmail.com

---------------------------------------------------------------------------------------
 What is QuickSearch?
   	QuickSearch is a Fastest Search Window. It Avoid to writing long code in our application.
	simply here u specify the Table Name and Field Names, automatically it will show
	the Search Window.

	Here I explain the Functionalities of QuickSearch Dll. In this mainly Four
        Functions are using.

 Connection :
	This is used to set ur connection in QuickSearch.DLL
	Connection is a Attribute of QuickSearch Dll. In this u can set ur Connection.

	Example:

	Dim Cn As New ADODB.Connection	'Data Connection
	Dim objSearch As Object
	
	Cn.Open Pubs	'Pubs - DSN Name

	'Create the Instance of QuickSearch.
	Set objSearch = CreateObject("QuickSearch.clsSearch")
    	
	'Set the Connection to object
    	objSearch.Connection = Cn
    
 SearchParameter :
	SYntax  : SearchParameter(tblName as String, ColumnName as String)
	This method is used to set the table(s) name and Field Name(s).
	In this you can pass multiple Table and multiple Field also.
	First  Parameter is used to specify the Table Name(s)
	Second Parameter is Used to Specify the Column Name(s)
	
	Example :

	'Single Table and Multiple Fields
	objSearch.SearchParameter "mItem", "mItem_Code,mItem_Desc,mUnit"

	'Multiple Table and Multiple Fields
	objSearch.SearchParameter "mItem,mDepartment","mItem.mItem_Code,mItem.mItem_Desc,mDepartment.mDept_Name"

 RetCode:
	It returns the selected code from the Search Window.

	Example :
	
	msgbox objSearch.RetCode

 RetDescription:
	It returns the selected Descriptions from the Search Window.

	Example :
	
	msgbox objSearch.RetDescription

----------------------------------------------------------------------------------------------------	
 This is my first DLL. so, i hope ur suggestions,Idea,Comments in this QuickSearch.DLL
 Here i Attach one Sample Project, use Form1 or Form2 in this project.
 Have a Nice Day.
 Thanks & Regards : MANESH.P
----------------------------------------------------------------------------------------------------		
