Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
In my QVW file, having an Listbox. Now i need to place "ALERT BOX" whenever the USER selects the "C". It Should be done everytime when the user selects on it.
Can anyone suggest on this
Thanks in advance.
Regards
Venkat
Hi,
You have to create a macro with msgbox() function and use triggers like this :
Look at the attachement, i make the application.
Hope that helps you
Martin
Hi,
You have to create a macro with msgbox() function and use triggers like this :
Look at the attachement, i make the application.
Hope that helps you
Martin
Hi Martin,
Thanks for reply, i tried its working.
But i need to provide a Alert from "Alert Wizard".
Pls can you explain difference between Msgbox and Alertbox.
Regards
Venkat
Hi,
See if this can help you.
Cheers.
Hi,
Thanks for your reply, its working fine.
Can you pls explain me the steps of macro code in detail. So that would help me to learn easily.
Sub raiseAlert()
set albm = ActiveDocument.GetAlertAndBookmark("AL01")
set alertstatus = ActiveDocument.CheckAlert(albm.Alert, albm.Bookmark)
if alertstatus.Default then
set act = alertstatus.Action
ActiveDocument.PerformAlertAction act
else
msgbox("Alert not fired")
end if
End Sub
Regards
Venkat