W
willy
The following code running in A2K seems work different when running on
A2k3.
On A2k this code changes the background of main Access Window.
On A2K3 it changes the background of Access Forms.
Please, does someone know the way to change the Access main window
background color?
Thanks in Advance
Guillem
..............................................the
code..........................
Private Const COLOR_APPWORKSPACE = 12 ' Background of MDI desktop
Global Const gWhite = 16777215
Private Declare Function SetSysColors _
Lib "User32" _
(ByVal nChanges As Long, lpSysColor As Long, _
lpColorValues As Long) As Long
Call SetSysColors(1, COLOR_APPWORKSPACE, gWhite )
......................................................................................
A2k3.
On A2k this code changes the background of main Access Window.
On A2K3 it changes the background of Access Forms.
Please, does someone know the way to change the Access main window
background color?
Thanks in Advance
Guillem
..............................................the
code..........................
Private Const COLOR_APPWORKSPACE = 12 ' Background of MDI desktop
Global Const gWhite = 16777215
Private Declare Function SetSysColors _
Lib "User32" _
(ByVal nChanges As Long, lpSysColor As Long, _
lpColorValues As Long) As Long
Call SetSysColors(1, COLOR_APPWORKSPACE, gWhite )
......................................................................................