Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. CRMBrad

    uploading accounts/contacts and getting them to the right GUID

    Try using the Migration Manager. It should be availible at downloads.microsoft.com
  2. CRMBrad

    Usage Statistics for MS CRM

    Are you looking to see stats like when they login? Or more like how many contacts have been created, activities closed? CRMBrad www.streamsol.com
  3. CRMBrad

    Importing an HTML Email into CRM

    Make sure that the url to the stylesheet is absolute. It should be something like http://www.domain.com/stylesheet.css instead of /stylesheet.css.You could also place the css inline at the top of the page. Also, different clients could render fonts differently (outlook vs hotmail). CRMBrad...
  4. CRMBrad

    Help Deleting all Accounts from CRM 4

    Something could be written to delete the leads programatticaly: QueryExpression qe=new QueryExpression(); qe.EntityName=EntityName.account.ToString(); qe.ColumnSet=new AllColumns(); BusinessEntity [] entities=crmService.RetrieveMultiple(qe).BusinessEntities; foreach(account a in entities) {...
  5. CRMBrad

    Make boolean field default on new contacts

    If you are creating them programmatically you can set the value with: entityname.boolfield = new CrmBoolean(); entityname.boolfield.Value = true; You can also customize the enity within CRMand set the attribute to a defualt value so it is always assigned Brad www.streamsol.com
  6. CRMBrad

    how to check if a text box is not null?

    In C# : txtBoxId.Text.Length In JavaScript : document.getElementById('txtBoxId').value.length Brad www.streamsol.com

Part and Inventory Search

Back
Top