Posted on November 23rd, 2015 by Pradip Sukla
One can easily retrieve the MS CRM entities including the customized one using web services. For this the following web services needs to be referenced from visual studio .Net. URL: http://<servername>:<portnumber>/MSCRMServices/2007/AD/CrmDiscoveryService.asmx?WSDL Web Reference Name: CrmSdk.Discovery URL: http://<servername>:<portnumber>/MSCRMServices/2007/CrmServiceWsdl.aspx Web Reference Name: CrmSdk Dim dt As New DataTable Dim dc1 As New DataColumn Dim dc2 As New […]
Posted on November 23rd, 2015 by Pradip Sukla
MSCRM by default doesnot provide any control for multiple selection.. To make this happen we have to go for customization. The following code snippet in java script replaces the ShipCode picklist control in Account form with a Multi-Select Checkbox Style Picklist control. var ShipCode = crmForm.all.address1_shippingmethodcode; ShipCode.style.display = “none”; var addDiv = document.createElement(“<div style=’overflow-y:auto; height:100px; […]