her: flame i love your friend and i must leave you. dont call me ever again.
me: can i still fuck your mum
her: oh my god wait what?
me: can i still fuck your mum
her: oh my god wait what?
Private Sub PrintDocument1_PrintPage(sender As Object, e As PrintPageEventArgs) Handles PrintDocument1.PrintPage
' Create a rectangle the size of the printable area of the page.
Dim recPrintable As New Rectangle(
e.MarginBounds.Left, e.MarginBounds.Top,
e.MarginBounds.Width, e.MarginBounds.Height)
' Create a rectangle used for the actual drawing dimensions of the image.
' Default it to the printable area.
Dim recDraw As Rectangle = recPrintable
' Load the image in a bitmap object we can use.
Dim bmSource As New Bitmap(ofdSelectPicture.FileName)
ResizeToPrintableArea(bmSource, recDraw, recPrintable)
' Draw the bitmap on the Graphics object of the PrintDocument control.
e.Graphics.DrawImage(bmSource, recDraw)
' This is the last page to be printed.
e.HasMorePages = False
' Free up resources used.
bmSource.Dispose()
End Sub
Dim objAttachments As Attachment = New Attachment(PhotoVeiwer.ofdSelectPicture.FileName)