How can I disable the parameter prompt box in code in CE9.
I need to dynamically populate a parameter depending upon a users log on details, but I don't want them to be able to manually change the parameter once I have populated it.
Can I setDisallowEditing or PromptOnDemandViewing dynamically?
I currently have
If param(intLoop).ParameterName = XXX" then
strValue = "YYY"
strParameterLine = "<input name=PStr" & intLoop & " VALUE="& strValue & ">"
End If
I need to dynamically populate a parameter depending upon a users log on details, but I don't want them to be able to manually change the parameter once I have populated it.
Can I setDisallowEditing or PromptOnDemandViewing dynamically?
I currently have
If param(intLoop).ParameterName = XXX" then
strValue = "YYY"
strParameterLine = "<input name=PStr" & intLoop & " VALUE="& strValue & ">"
End If