Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
why this not working on button click
in script
set vName='Sunil';
Sub DispName
set Var=ActiveDocument.GetVariable(vName.String)
msgbox(Var)
End Sub
Regards
Sunil
Sunil, please look closely at the APIguide.qvw document.
Try something like this
Sub DispName
vName="Sunil"
set Var=ActiveDocument.GetVariable(vName)
msgbox(Var.Getcontent.string)
End Sub
Sunil, please look closely at the APIguide.qvw document.
Try something like this
Sub DispName
vName="Sunil"
set Var=ActiveDocument.GetVariable(vName)
msgbox(Var.Getcontent.string)
End Sub
Thank s for reply .
i hav found already