Hi,
How could I print the HtmlPanel content? With the vwg I can print with this code block.
string strScript = “document.getElementById(\”TRG_”
+ this.htmlBox1.ID.ToString() + “\”).contentWindow.focus();”
+ “document.getElementById(\”TRG_”
+ this.htmlBox1.ID.ToString() + “\”).contentWindow.print();”;
VWGClientContext.Current.Invoke(this, “eval”, strScript);
Thank you.
Yes, I have already did and I just wanted to print htmlpanel content against to whole window. But now, I redesigned my screen flow. Now It seems working fine.
Thank you.
Did you try Application.Print()? https://wisej.com/docs/html/Overload_Wisej_Base_ApplicationBase_Print.htm
Please login first to submit.