Home image

Over than 18 years helping businesses and people to increase their sales and revenue, to improve their customer service experience and get the most benefit of the existing Microsoft technology to meet their goals with success.


Get the Power of Microsoft technologies now with


Home image


Contact Us for free trial and recomendations.

Home image
Home image

Why Us

If you want to have an excellent quality solution you must go directly to the source. That is what we do, our solutions are built with the best quality of components, s​​​trongly tested​ and passed the most critical proofs, so that we don't need to worry about​ the final result, if we use excellent compon​ents, then the results will be excellent as well.Please do not hesitate to contact us. We look forward to working with you and making your project a success.

Home image

Technologies

Remoting Coders can perform projects using these technologies and tools
.NET Framework , C#, JavaScript, JQuery, Microsoft SharePoint, Microsoft Dynamics 365, Power Platform, PowerApps, Power Automate, Dataverse, Dynamics Business Central.

Home image

Integrations

Why not automate the manual processes to share data between two different systems? If you have more than one system or ERP software in your enterprise, you will want to integrate them. We have a lot of experience in doing system integrations from standard systems available on the internet to very complex legacy systems. we can also help you integrate online systems with 
‌on-premise systems.

Home image

Our disciplines

Each discipline has their own strength and focus, but we all collaborate as one team. To learn more about how we work together, visit ‌how we work.

Recently Blog Post

D365 CRM: Formatting the Phone Number in US format using JavaScript


If you need to format a phone number field in an Entity Form in CRM, use the following JavaScript code to accomplish this:

    function formatFieldPhoneNumber(executionContext, fieldName) {
        formContext = executionContext.getFormContext();
        var value = formContext.getAttribute(fieldName).getValue();
        var phoneFormat = formatPhoneNumber(value);
     
        formContext.getAttribute(fieldName).setValue(phoneFormat);
    }
     
    let formatPhoneNumber = (str) => {
        //Filter only numbers from the input
        let cleaned = ('' + str).replace(/\D/g, '');
     
        //Check if the input is of correct
        let match = cleaned.match(/^(1|)?(\d{3})(\d{3})(\d{4})$/);
     
        if (match) {
            //Remove the matched extension code
            //Change this to format for any country code.
            let intlCode = (match[1] ? '+1 ' : '')
            return [intlCode, '(', match[2], ') ', match[3], '-', match[4]].join('')
        }
     
         return null;
    }

Simple add the function “formatFieldPhoneNumber” in the OnChange event of your phone attribute field in the Form passing the execution context as a first parameter and the field name (telephone1 for ex.) as a second parameter and try it.
 
Enjoy it!

Continue reading...

Home image
Home image
Home image
Home image