Question: In SalesLogix I would like to make the Delete link that is on the Grid form available only to select teams and/or users. One example is the Opportunity.OpportunityCampaigns quick form. How do I do this?
Answer: You should be able to do this at runtime:
// if user does not have access do delete
// this will hide the second column in the grid at index 1grdMyGrid.Columns[1].Visible = false;



