Windows Vista Forums
Vista Forums Home Join Vista Forums Windows 7 Forum Vista Tutorials Tags
Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks.

Go Back   Vista Forums > Misc Newsgroups > VB Script

Vista - Stopped working after updating XP

Reply
 
Old 04-10-2009   #1 (permalink)
AP


 
 

Stopped working after updating XP

I've used the script below for the last 2 months without problems and then
earlier today I thought I might update my Windows XP from service pack 2 to
service pack 3. Executing the script now throws up the error "Type Mismatch:
Left" and "Type Mismatch: Top". I think (I might be wrong) it's because the
parameters intHorizontal and inVertical somehow remain null.

Does anybody know why ? Thanks for your help.

-------------

'Get screen width and height
Set objWMIService = GetObject("Winmgmts:\\.\root\cimv2")
Set colItems = objWMIService.ExecQuery("Select * From Win32_DesktopMonitor
where DeviceID = 'DesktopMonitor1'",,0)
For Each objItem in colItems
intHorizontal = objItem.ScreenWidth
intVertical = objItem.ScreenHeight
Next

'Display progress indicator
Set objExplorer = CreateObject ("InternetExplorer.Application")
With objExplorer
.Navigate "about:blank"
.ToolBar = 0
.AddressBar = 0
.MenuBar = 0
.StatusBar = 0
.Left = (intHorizontal - 450) / 2
.Top = (intVertical - 250) / 2
.Width = 450
.Height = 250
.Visible = 1
.Document.Body.Style.Cursor = "wait"
.Document.Title = "Progress Indicator"
End With



My System SpecsSystem Spec
Reply

Thread Tools


Similar Threads
Thread Forum
Messenger stopped updating Live Messenger
Windows Explorer Stopped Working, Internet Explorer Stopped Working, what DOES work? General Discussion
MS Intellipoint stopped working but ctrl panel says working proper Vista hardware & devices
Hl2.exe has stopped working, cod2_mp has stopped working Vista Games
Vista, MediaCenter - Guide stopped updating Vista music pictures video


Vista Forums is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows Vista", the Start Orb, and related materials are trademarks of Microsoft Corp.
© Designer Media Ltd

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46