this is not part of build yet

git-svn-id: svn://10.0.0.236/trunk@75166 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
morse%netscape.com
2000-07-29 20:45:44 +00:00
parent f8274b2cfc
commit 28b2fb591d

View File

@@ -42,9 +42,16 @@ your Form Manager Information here</font></font></font></h3></center>
.createInstance(Components.interfaces.nsIBrowserInstance);
if (appCore) {
status = appCore.walletRequestToCapture(window._content);
alert("Your interview information has been saved, status="+status);
if (status == -1) { /* UnableToCapture */
alert("UnableToCapture");
} else if (status == 0) { /* Captured */
alert("Your interview information has been saved");
} else if (status == +1) { /* NotCaptured */
alert("There is no information to save.");
}
} else {
alert("no appCore");
alert("Error occured when trying to save data");
}
}