Dim bounds As Rectangle
Dim screenshot As System.Drawing.Bitmap
Dim graph As Graphics
bounds = Screen.PrimaryScreen.Bounds
screenshot = New System.Drawing.Bitmap(bounds.Width, bounds.Height, System.Drawing.Imaging.PixelFormat.Format32bppArgb)
graph = Graphics.FromImage(screenshot)
graph.CopyFromScreen(bounds.X, bounds.Y, 0, 0, bounds.Size, CopyPixelOperation.SourceCopy)
PictureBox1.Image = screenshot
'ScreenBounds เก็บคุณสมบัติต่างๆ ของหน้าจอแสดงผล
Dim ScreenBounds As Rectangle = Screen.PrimaryScreen.Bounds
'screenshot เก็บภาพโดยมีความกว้างและความสูง เท่ากับ ScreenBounds และเ็ก็บในรูปแบบ 32 bit RGB
Dim screenshot As System.Drawing.Bitmap = New System.Drawing.Bitmap(ScreenBounds.Width, ScreenBounds.Height, System.Drawing.Imaging.PixelFormat.Format32bppArgb)
'graph นำเอา screenshot มาเลือกเอาขนาด และตำแหน่งภาพ screen ที่ต้องการ
Dim graph As Graphics = Graphics.FromImage(screenshot)
graph.CopyFromScreen(ScreenBounds.X, ScreenBounds.Y, 0, 0, ScreenBounds.Size, CopyPixelOperation.SourceCopy)