Show pageOld revisionsBacklinksAdd to bookBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== onPopupCreate ====== Event of [[:scripting:api:uievents:start|IUIEvents]] ===== Description ===== Called when toolbar popup window should created ===== Parameters ===== * [[scripting:api:data-type:BSTR|BSTR]] **sCommand** ==== Return Value ==== * [[scripting:api:data-type:ULONG|ULONG]] **ppPopup** ===== Syntax ===== ==== JavaScript ==== <code javascript> Appplication.onPopupCreate = function() { return ppPopup; }; </code>==== Visual Basic Script ==== <code vb> function onPopupCreate() { return ppPopup } Appplication.onPopupCreate = onPopupCreate </code>==== C++ ==== <code cpp> HRESULT CUIEvents::onPopupCreate(BSTR sCommand, ULONG* ppPopup) { } </code>===== See Also ===== [[:scripting:api:uievents:start|IUIEvents]] ~~NOTOC~~