21/05/2012, 12:20
Microsoft Access penceresini ekranın sol üst köşesine gider ve onu standart VGA ekran boyutuna 640 x 480 piksel boyutu için yazın? (0, 0, 640, 480) AccessMoveSize modülün Anlık pencereyi ve sonra ENTER tuşuna basın.
bunu nasıl kullanacağız
Kod:
Declare Function apiMoveWindow Lib "user32" Alias "MoveWindow" _
(ByVal hwnd As Long, ByVal x As Long, ByVal y As Long, ByVal _
nWidth As Long, ByVal nHeight As Long, ByVal bRepaint As Long) _
As Long
Function AccessMoveSize (iX As Integer, iY As Integer, iWidth As _
Integer, iHeight As Integer)
apiMoveWindow GetAccesshWnd(), iX, iY, iWidth, iHeight, True
End Function
bunu nasıl kullanacağız