On 7/21/2023 11:27 AM, Milind Nighojkar wrote: > Scenerio : In a form have > text = '<font color="Darkred" size=4><b>Processing ......</b></font>' > > Can 'Processing ' in above be passed as a variable?
Sure, it can be done in many ways:
cText = "Processing"
text = '<font color="Darkred" size=4><b>' + cText + ' ......</b></font>'