VCPListGetSelection
int VCPListGetSelection(Word id);
//ENDH
/*****************************************************
	Get the selected item of a list

       	id = user defined id of the list

von Thorsten Tietz
******************************************************/
int VCPListGetSelection(Word id)
{
	FormPtr formp;
	ListPtr lp;

	formp=FrmGetActiveForm();
	lp=FrmGetObjectPtr(formp,FrmGetObjectIndex(formp,id));

	return (LstGetSelection (lp));
}


