- 4 Agosto 2011
- 3.539
- 0
- Miglior risposta
- 0
Buongiorno Sciaxiani (o come si dice xD)
Sto iniziando ad usare visual basic, ed ho iniziato con il 2010. Stavo quindi provando a fare un capture Screen. Questo però non funziona. Io avendo controllato più e più volte il codice, e, sembrandomi giusto, ho deciso di chiedere assistenza a voi. Vi posto i codici che ho inserito.
BUTTON 1 : (Screen)
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim bounds As Rectangle
Dim screenshot As Bitmap
Dim graphs As Graphics
bounds = Screen.PrimaryScreen.Bounds
screenshot = New Bitmap(bounds.Width, bounds.Height, System.Drawing.Imaging.PixelFormat.Format32bppArgb)
graphs = Graphics.FromImage(screenshot)
graphs.CopyFromScreen(bounds.X, bounds.Y, 0, 0, bounds.Size, CopyPixelOperation.SourceCopy)
PictureBox1.Image = screenshot
End Sub
BUTTON 2 : (Salvataggio)
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
Dim savefile As New SaveFileDialog
Dim bitmap1 As New Bitmap(PictureBox1.Image)
Try
If savefile.ShowDialog = DialogResult.OK Then
bitmap1.Save(savefile.FileName, System.Drawing.Imaging.ImageFormat.Jpeg)
End If
Catch ex As Exception
MsgBox(ex.ToString, , "Error")
End Try
End Sub
End Class
Confido in una vostra risposta e vi saluto.
Sto iniziando ad usare visual basic, ed ho iniziato con il 2010. Stavo quindi provando a fare un capture Screen. Questo però non funziona. Io avendo controllato più e più volte il codice, e, sembrandomi giusto, ho deciso di chiedere assistenza a voi. Vi posto i codici che ho inserito.
BUTTON 1 : (Screen)
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim bounds As Rectangle
Dim screenshot As Bitmap
Dim graphs As Graphics
bounds = Screen.PrimaryScreen.Bounds
screenshot = New Bitmap(bounds.Width, bounds.Height, System.Drawing.Imaging.PixelFormat.Format32bppArgb)
graphs = Graphics.FromImage(screenshot)
graphs.CopyFromScreen(bounds.X, bounds.Y, 0, 0, bounds.Size, CopyPixelOperation.SourceCopy)
PictureBox1.Image = screenshot
End Sub
BUTTON 2 : (Salvataggio)
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
Dim savefile As New SaveFileDialog
Dim bitmap1 As New Bitmap(PictureBox1.Image)
Try
If savefile.ShowDialog = DialogResult.OK Then
bitmap1.Save(savefile.FileName, System.Drawing.Imaging.ImageFormat.Jpeg)
End If
Catch ex As Exception
MsgBox(ex.ToString, , "Error")
End Try
End Sub
End Class
Confido in una vostra risposta e vi saluto.
Ultima modifica: