 |
|
C# ช่วยเรื่องคำสั่งปริ้นหน่อยครับ ด้วยครับผม เรื่อง ขนาดอ่ะครับ |
|
 |
|
|
 |
 |
|
รบกวนจริงๆ ครับ T_T
|
 |
 |
 |
 |
Date :
2014-09-05 22:41:55 |
By :
ต๋องคับ |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
Capture กรู๊ปบ๊อกลง Document แล้วสั่งปริ้นอีกทีใช่มะ
|
 |
 |
 |
 |
Date :
2014-09-06 14:21:58 |
By :
zarooman |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ป่าวครับ คือ ข้อมูล ทั้งหมดผมอยู่ใน กรุปบ๊อก แล้ว ผม ใช้คำสั่ง ปร้น รี วิว มันออกมาเป็นแบบนี้อ่ะครับ
|
 |
 |
 |
 |
Date :
2014-09-06 16:57:22 |
By :
ต๋องคับ |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ผมใช้วิธี แคปเจอร์เอาครับ แล้วก็เอารูปที่แคบได้นั้นปริ้นออกมา ซึ่งขนาดเราสามารถปรับได้ตามความกว้างของฟอร์มที่เราย่อขยายได้ ซึ่งไม่ได้มาฟิกขนาดในโค้ดอะครับ
รูปจะใหญ่จะเล็กอยู่ที่ขนาดฟอร์มที่เรารีไซต์ ก่อนทำการกดปุ่มอะครับ
Code (VB.NET)
Dim memoryImage
Private Declare Auto Function BitBlt Lib "GDI32.DLL" (ByVal hdcDest As IntPtr, ByVal nXDest As Integer, ByVal nYDest As Integer, ByVal nWidth As Integer, ByVal nHeight As Integer, ByVal hdcSrc As IntPtr, ByVal nXSrc As Integer, ByVal nYSrc As Integer, ByVal dwRop As Int32) As Boolean
'======ปุ่มปริ้น
Private Sub btnPrintpreview_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnPrintpreview.Click
'dlgEmpOnline.Visible = False
CaptureScreen()
'lgEmpOnline.Visible = True
PrintPreviewDialog1.Document = PrintDocument1
PrintPreviewDialog1.ShowDialog()
End Sub
'=========Sub แคปเจอร์===========
Private Sub CaptureScreen()
Dim mygraphics As Graphics = Panel4.CreateGraphics() ' ---- เปลี่ยนเป็น GroupBox1.CreateGraphics()
Dim s As Size = Panel4.Size ' ---- เปลี่ยนเป็น GroupBox1.Size
memoryImage = New Bitmap(s.Width, s.Height, mygraphics)
Dim memoryGraphics As Graphics = Graphics.FromImage(memoryImage)
Dim dc1 As IntPtr = mygraphics.GetHdc
Dim dc2 As IntPtr = memoryGraphics.GetHdc
BitBlt(dc2, 0, 0, Panel4.ClientRectangle.Width, Panel4.ClientRectangle.Height, dc1, 0, 0, 13369376)
mygraphics.ReleaseHdc(dc1)
memoryGraphics.ReleaseHdc(dc2)
End Sub
'========Printpage===================
Private Sub PrintDocument1_PrintPage(ByVal sender As System.Object, ByVal e As System.Drawing.Printing.PrintPageEventArgs) Handles PrintDocument1.PrintPage
e.Graphics.DrawImage(memoryImage, 10, 10)
End Sub
ปล.หากนอกเรื่องขออภัยด้วยครับ
|
 |
 |
 |
 |
Date :
2014-09-06 17:43:10 |
By :
zarooman |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ขอบคุณมากนะครับ ^^
รบกวนขอ โปรเจ็คตัวอย่าง ไว้เป็นกรณี ศึกษาได้ไหมครับ
[email protected]  
|
 |
 |
 |
 |
Date :
2014-09-08 11:52:56 |
By :
ต๋องคับ |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ใครก็ได้ช่วยด้วยครับ ติด อย่างเดียวจริงๆ
|
 |
 |
 |
 |
Date :
2014-09-17 16:15:04 |
By :
ต๋องคับ |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|