Hi,
i need to display a message box containg the web link in the form, where the user can click on the link when the message box displays..
Views
Replies
Total Likes
I do not think that is possible with the message box. Unless you want to write code for customizing the Java Script windows.
Alternatively, you can capture the OK button on a message box and open a URL from the click event code.
if(xfa.host.messageBox("Your message","Caption", 2,1) == 1){
//Write code to open the URL.
}
Thanks
Srini
Views
Replies
Total Likes
thanks Srini
Views
Replies
Total Likes