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 > Vista Forums > Microsoft Office

Vista - Outlook Custom Form

Reply
 
Old 10-02-2008   #1 (permalink)


Windows Vista Business
 
 

Outlook Custom Form

We have a custom form that is working on XP but not in vista. The modeless.dialog com object is not found.

Where can I find that com object so I can put it on my machine

Here's the code

' --- the following code had been automatically added to ensure all required COM objects are installed.
function COMExists(name)
' checks whether a specific COM object is installed on
' your local machine
set cwsh = CreateObject("WScript.Shell")
on error resume next
dummy = cwsh.RegRead("HKCR\" & name & "\")
if err.number<>0 then
COMExists = false
else
COMExists = true
end if
end function

if not COMExists("modeless.dialog") then
msg="COM-Object ""modeless.dialog"" is required. This object is currently not installed on your system." & vbCr
msg = msg & "Install the MODELESS component from CD" & vbCr
MsgBox msg, vbExclamation

My System SpecsSystem Spec
Reply

Thread Tools


Similar Threads
Thread Forum
Sending/Receiving Custom outlook Form Microsoft Office
Custom form printing in Vista now possible... Vista print fax & scan
RE: Mail received in unreadable form in Outlook Vista General
Vista 64-Bit Custom Form for printer Vista print fax & scan
Importing data form outlook Vista mail


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