Hallo VB Paradise,
Ich habe aktuell eine Anwendung für die es wichtig wäre herauszufinden welche Auflösung der Monitor hat auf dem Sich die Anwendung im Moment befindet.
Wie ich generell die Aufloesung herausbekomme ist ja kein Problem ._.
Ich habe aktuell eine Anwendung für die es wichtig wäre herauszufinden welche Auflösung der Monitor hat auf dem Sich die Anwendung im Moment befindet.
VB.NET-Quellcode
- Public Const SM_CXSCREEN = 0
- Public Const SM_CYSCREEN = 1
- Declare Function GetSystemMetrics Lib "user32" (ByVal nIndex As Long) As Long
- Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
- Dim gWidth As Integer, gHeight As Integer
- gWidth = GetSystemMetrics(SM_CXSCREEN)
- gHeight = GetSystemMetrics(SM_CYSCREEN)
- MessageBox.Show("Bildschirmbreite: " & Chr(9) & gWidth & Chr(13) & "Bildschirmhöhe: " & Chr(9) & gHeight)
- End Sub
Unfortunately, this Signature is not available in Germany because it may contain music for which GEMA
has not granted the respective music rights. Sorry about that.