|I have been trying to follow a tutorial passing input parameters to a custom workflow. Text is fine though I am getting stuck on how to read the value from 'UseFax'. In Crm new_usefax is a two option ( yes / no ). I need to read this value in the workflow
<RequiredArgument> <Input("UseFax")> Public Property new_usefax() As InArgument(Of Boolean) Get Return m_new_usefax End Get Set m_new_usefax = Value End Set End Property Private m_new_usefax As InArgument(Of Boolean)
I have tried If new_usefax.[Get](executionContext) = True Then (do something) but this fails
*This post is locked for comments