Hi, i wonder if is it possible to print in the client side whit VBscript, but not the whole screen, just some Strings
Tank you.
Printable View
Hi, i wonder if is it possible to print in the client side whit VBscript, but not the whole screen, just some Strings
Tank you.
I'm afraid not, you can't do that.
I don't see a reason on why you need that.
You can write with document.write(strString) with javascript.
If you mean printing to the printer, then your only 'access' to the printer is the javascript function
So if you're looking to print just a couple strings, try grouping them together onto some separate page, then invoke the window.print() function. Of course, it still requires user interaction (he could simply cancel it if he doesn't like it).Code:window.print();
HTH