Tuesday, November 18, 2025

Write a condition on HTML editor control if it is having value in d365fo x++

 Htmleditor htmledc=formRun.design().controlName("YourHtmlEditorControlName") as Htmleditor;

if(htmledc.parmHtmlContent())

{write condtion}

No comments:

Post a Comment

Assign roles through ssms in d365fo

 Step1;- Here my Role name I want to assign is System admin SELECT  RecId,* FROM SecurityRole WHERE Name = 'System administrator'; s...