Registriert seit: 7. Apr 2006
2 Beiträge
|
Re: Monitor X per ChangeDisplaySettingsEx (A) akivieren ?
12. Okt 2006, 13:49
vielen dank für your code sample.
please note that while trying to set a negative position for my monitor
lDevMode.dmPosition.x := -1280;
I had to change the TPOINTL record to
TPOINTL = Packed Record
x : Integer;
y : Integer;
End;
thanks again.
|