Ceriwis  

Go Back   Ceriwis > HOBI > Komputer & Teknologi > Programming

Programming Share, tanya jawab, saling bantu antar programmer dengan berbagai macam bahasa pemrograman.

Reply
 
Thread Tools
  #1  
Old 20th November 2011
Permenkaret Permenkaret is offline
Ceriwiser
 
Join Date: Nov 2011
Posts: 351
Rep Power: 15
Permenkaret mempunyai hidup yang Normal
Default [ASK]Fungsi Print C#

para master ... ad yg tao gak cara ngeprint bagian tertentu dari form applikasi kita... misal mao print setengah bagian bawah dari form itu

jadi pas button print di form di klik, entar 1/2 form na kecetak gt ...



kl yg ini buat full satu form :


Code:

[System.Runtime.InteropServices.DllImport("gdi32.dl l")]
public static extern long BitBlt (IntPtr hdcDest, int nXDest, int nYDest, int nWidth, int nHeight, IntPtr hdcSrc, int nXSrc, int nYSrc, int dwRop);
private Bitmap memoryImage;
private void CaptureScreen()
{
Graphics mygraphics = this.CreateGraphics();
Size s = this.Size;
memoryImage = new Bitmap(s.Width, s.Height, mygraphics);
Graphics memoryGraphics = Graphics.FromImage(memoryImage);
IntPtr dc1 = mygraphics.GetHdc();
IntPtr dc2 = memoryGraphics.GetHdc();
BitBlt(dc2, 0, 0, this.ClientRectangle.Width, this.ClientRectangle.Height, dc1, 0, 0, 13369376);
mygraphics.ReleaseHdc(dc1);
memoryGraphics.ReleaseHdc(dc2);
}
private void printDocument1_PrintPage(System.Object sender, System.Drawing.Printing.PrintPageEventArgs e)
{
e.Graphics.DrawImage(memoryImage, 0, 0);
}
private void printButton_Click(System.Object sender, System.EventArgs e)
{
CaptureScreen();
printDocument1.Print();
}



ad yg tao cara na???

</div>
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off


Terkait
Thread Thread Starter Forum Replies Last Post
Jasa Print Cover &amp; Label Cd/Dvd,Copy Cd,Print Ebook,Cuci Foto Australian Service lainnya 0 14th October 2012 11:49 PM
Jasa Print, Cetak/Print eBook dan eMagazine Murah!!! (MASUK GAN!) Polcadot Service lainnya 0 14th October 2012 11:10 AM
JUAL Tas Animal Print, USA print, Kulit jeruk/sintetis murah meriah kulitas top! panda1554 Tas dan Dompet 0 17th September 2012 01:04 PM
JUAL [wts] dompet print | whpo print | bankbook organizer print tasTajur Tas dan Dompet 0 17th September 2012 10:35 AM
JUAL design for print / cetak sablon/offset/digital print harga seikhlasnya Sotodaging Art Design 0 14th March 2012 11:49 AM

 


All times are GMT +7. The time now is 05:02 PM.