Sice je to pozdě. Ale lepší pozdě, než nikdy. Může se to hodit do budoucna.
Dim old_header As String = My.Computer.Registry.GetValue("HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\PageSetup", "header", Nothing)
Dim old_footer As String = My.Computer.Registry.GetValue("HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\PageSetup", "footer", Nothing)
My.Computer.Registry.SetValue("HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\PageSetup", "header", "")
My.Computer.Registry.SetValue("HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\PageSetup", "footer", "")
Form1.WebBrowser1.Print()
My.Computer.Registry.SetValue("HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\PageSetup", "header", old_header)
My.Computer.Registry.SetValue("HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\PageSetup", "footer", old_footer)
A pak je to bez záhlaví a zápatí. Bohužel musím taktéž používat webbrowser k tisknu dat, neb richtextbox při tisku nebere TAB jak jste již psal v jiném příspěvku.
|