VCPCtlDrawControl
void VCPCtlDrawControl(Word id);
//ENDH
/*****************************************************
	Draws the control 

       id = user defined id of the field

******************************************************/
void VCPCtlDrawControl(Word id)
{
	FormPtr fp;

	fp=FrmGetActiveForm();
	CtlDrawControl(FrmGetObjectPtr(fp, FrmGetObjectIndex(fp, id)));
}
