CodeItBetter Programming Another VB Programming Blog

How to set Desktop Wallpaper to None

Posted on January 5, 2009
1
2
3
4
5
6
7
8
9
'System & API - How to set Desktop Wallpaper to None
'To set wall paper to none.
Private Declare Function SystemParametersInfo Lib "user32" Alias _
    "SystemParametersInfoA" (ByVal uAction As Long, ByVal uParam As Long, _
    ByVal lpvParam As String, ByVal fuWinIni As Long) As Long
 
Sub ChangeWallpaper()
    SystemParametersInfo 20, 0, "", 1
End Sub
Comments (0) Trackbacks (0)

No comments yet.


Leave a comment


 

No trackbacks yet.