Hi,
I have created a message popup using:
Set IE = WScript.CreateObject("InternetExplorer.Application")
IE.FullScreen = 0
IE.MenuBar = 0
IE.ToolBar = 0
IE.StatusBar = 0
IE.addressbar = False
IE.Width = 640
IE.Height = 480
IE.Left = 0
IE.Top = 0
IE.Resizable = false
IE.Visible = true
Can anyone tell me if there is a property to insert a picture as the background to this IE window?
I can set the colour of the window using something like:
IE.Document.Write "<p><h6><font color='#666666'>Alt+F4 to close</font></h6></div>"
But I need a way to add a background picture. Any ideas?
Thanks in advance
I have created a message popup using:
Set IE = WScript.CreateObject("InternetExplorer.Application")
IE.FullScreen = 0
IE.MenuBar = 0
IE.ToolBar = 0
IE.StatusBar = 0
IE.addressbar = False
IE.Width = 640
IE.Height = 480
IE.Left = 0
IE.Top = 0
IE.Resizable = false
IE.Visible = true
Can anyone tell me if there is a property to insert a picture as the background to this IE window?
I can set the colour of the window using something like:
IE.Document.Write "<p><h6><font color='#666666'>Alt+F4 to close</font></h6></div>"
But I need a way to add a background picture. Any ideas?
Thanks in advance