Skip to main content

AccessTr.neT


Microsoft Access penceresini boyutu

Microsoft Access penceresini boyutu

Çözüldü #1
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.

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
@benbendedeilem
Cevapla

Bir hesap oluşturun veya yorum yapmak için giriş yapın

Yorum yapmak için üye olmanız gerekiyor

ya da

Bu Konudaki Yorumlar
Microsoft Access penceresini boyutu - Yazar: accessman - 21/05/2012, 12:20
Task