|
-
Nov 29th, 2002, 01:57 PM
#1
Thread Starter
Member
Wallpaper
How do I set a picture as the wallpaper stretch, center, or tile?
-
Nov 29th, 2002, 02:03 PM
#2
Thread Starter
Member
can anyone please help me?
-
Nov 29th, 2002, 02:11 PM
#3
Let me in ..
Right click on ur desktop, select properties. Now in the backgroud tab select browse and locate the picture. Then set it as a wallpaper.
Is that what u want ?
-
Nov 29th, 2002, 02:12 PM
#4
So Unbanned
Originally posted by techyspecy
Right click on ur desktop, select properties. Now in the backgroud tab select browse and locate the picture. Then set it as a wallpaper.
Is that what u want ?
HAHAHAHAHAHAHAHA.
-
Nov 29th, 2002, 02:14 PM
#5
Thread Starter
Member
Dude! I mean using VB!!!! This is call VBForums, isn't it?
-
Nov 29th, 2002, 02:17 PM
#6
So Unbanned
To set the wallpaper you can use
SystemParametersInfo API.
-
Nov 29th, 2002, 02:20 PM
#7
Let me in ..
Originally posted by XSawFishX
Dude! I mean using VB!!!! This is call VBForums, isn't it?
Sure it is. But i have seen people asking questions in this forum that has nothing to do with Computer world in the first place.
So do not get Angry on me.
Let me check your "using VB issue .."
-
Nov 29th, 2002, 02:25 PM
#8
Let me in ..
Private Declare Function SystemParametersInfo Lib "user32" Alias "SystemParametersInfoA" (ByVal uAction As Long, ByVal uParam As Long, ByVal lpvParam As Any, ByVal fuWinIni As Long) As Long
Private Const SPI_SETDESKWALLPAPER = 20
Private Sub Command1_Click()
Dim lngSuccess As Long
Dim strBitmapImage As String
CommonDialog1.ShowOpen
strBitmapImage = CommonDialog1.FileName
lngSuccess = SystemParametersInfo(SPI_SETDESKWALLPAPER, 0, strBitmapImage, 0)
End Sub
This is the simplest way to set the wallpaper .....
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|