I am porting an application in development from NT 5 to the latest build of NT 6 and have gotten stuck on a 'No matching prototype' error on single procedure.
The procedure is a NetWebBrowse procedure similar to several others that compile fine. The procedure has a form procedure to delete a record, but the delete procedure is called by a button on the browse row rather than a single delete button above the browse.
The error is in the ClosingScripts Routine shown in bold italic underline on the last line below (starts at ( of clip and ends with ' immediately afterwards)
-------------------------------------------------------
loc:options = ' sproc:"'&lower('BrowseMNRUSView')&'",' & |
' id:"'&clip(loc:divname)&'",' & |
' parent:"'&clip(loc:parent)&'",' & |
' value:"'&clip(loc:actualselection)&'",' & |
' form:"'&clip('DeleteMNRESUSER')&'",' & |
' formInsert:"'&clip('')&'",' & |
' formCopy:"'&clip('')&'",' & |
' formChange:"'&clip('')&'",' & |
' formView:"'&clip('')&'",' & |
' formDelete:"'&clip('')&'",' & |
' formpopup:'&loc:FormPopup&',' & |
' selectAction:"'&clip(loc:selectAction)&'",' & |
' closeAction:"'&clip(loc:CloseAction)&'",' & |
' lookupField:"'&p_web.GSV('BrowseMNRUSView:LookupField')&'",' & |
' confirmDeleteMessage:"'&clip()&'",' & |
Any suggestions will be greatly appreciated. Thanks.