Hi,
I use a inputbox to allow some kind of reports only with a password. (thx to this forum!)
...
window.OPEN('Passwort #1########');
window.INPUT(1,Password);
window.CLOSE;
...
The first problem: everybody can see the password. I want to save the inputbox like PasswordText = yes in a TextBox. Is that doable?
The next problem: is there any way to "close" the report if the password is false? Now I break the report like CurrReport.break, but this performance isn´t great. To enter the report must be allowed only with the password.
Regards,
amb
0
Comments
To quit you can use CurrReport.QUIT...
MVP - Dynamics NAV
My BLOG
NAVERTICA a.s.
ok, I use a form to getting the password.
thx, your idea to quit the report with CurrReport.quit is simply but good. The problem is that the report is started, so the user must close it. I want to close it with code.
thx,
amb
... to hide the report if the password is false.
thx,
amb