נשלח בתאריך: 31 May 2007 בשעה 00:21 | | IP רשוּם
|
|
|
|
יש דרך יותר טובה אם אתה יכול להפעיל קוד דומה:
קוד:
private static void PrintTempPage()
{
WebBrowser webBrowserForPrinting = new WebBrowser();
webBrowserForPrinting.DocumentCompleted += new WebBrowserDocumentCompletedEventHandler(PrintDocument);
v
webBrowserForPrinting.Navigate(System. Environment.CurrentDirectory + @"/temp.html");
}
private static void PrintDocument(object sender, WebBrowserDocumentCompletedEventArgs e)
{
(( WebBrowser)sender).Print();
Debug.WriteLine(((WebBrowser)sender).Version.ToString());
}
|
|
|
אבל אני רוצה משהו שמשתמש ב WIN32 ולא ב .NET
יש לך פיתרון (או כיוון) לזה?
|