I am trying to screen capture in my application please refer with the picture below that has red mark
but it only captures this part
here is the code by the way
Private Function TakeScreenShot(ByVal Control As Control) As Bitmap
Dim screenSize As Size = New Size(Control.Width, Control.Height)
Dim screenGrab As New Bitmap(Control.Width, Control.Height)
Dim g As Graphics = Graphics.FromImage(screenGrab)
g.CopyFromScreen(New Point(Control.Location.X, Control.Location.Y), Point.Empty, screenSize)
Return screenGrab
End Function