Parsi Coders

نسخه‌ی کامل: سورس کد تغیر پس زمینه دسکتاپ
شما در حال مشاهده نسخه آرشیو هستید. برای مشاهده نسخه کامل کلیک کنید.
کد پی‌اچ‌پی:
Private Declare Function SystemParametersInfo Lib "user32" Alias "SystemParametersInfoA" _
    
(ByVal uAction As IntegerByVal uParam As IntegerByVal lpvParam As StringByVal fuWinIni As Integer_
    
As Integer

    
''' <summary>
    ''' 
Changes the desktop background image
    
''' </summary>
    ''' 
<param name="FileName">Path to the image</param>
    
''' <param name="KeepAfterBoot">Makes changes to keep the image after a reboot</param>
    ''' 
<remarks></remarks>

    Public 
Sub ChangeBackground(ByVal FileName As StringByVal KeepAfterBoot As Boolean)
        Try
            If 
KeepAfterBoot True Then
                SystemParametersInfo
(200FileName1)
            Else
                
SystemParametersInfo(200FileName0)
            
End If
        Catch 
ex As Exception
            MsgBox
(ex)
        
End Try
    
End Sub