Writing a string data into WIN.INI using WriteProfileString API
Writing a string data into WIN.INI using WriteProfileString API
Rate Writing a string data into WIN.INI using WriteProfileString API
(2(2 Vote))
' Set the "Wallpaper" setting in the [Desktop] section of WIN.INI to C:\Windows\Plus!.bmp.
' WARNING: Use extreme caution when editing the WIN.INI file, because writing bad data to it can create disasterous results to the system!
Dim retval As Long ' return value
' Set the value.
retval = WriteProfileString("Desktop", "Wallpaper", "C:\Windows\Plus!.bmp")
End
End Sub
Writing a string data into WIN.INI using WriteProfileString API Comments
No comments yet — be the first to post one!
Post a Comment