Question : emails in outlook 2007 client using hosted exchange server got moved to outlook express locally

I have a DELL optiplex 755 running, windows xp service pack 3, and somehow the default email client got switched to outlook express.  I was able to switch outlook 2007 back to the default email client, but somehow all the messages from the inbox moved into outlook expresss.  When I loaded the outlook 2007 client that works with the hosted exchange server, all the emails that got moved to outlook express disappeared from outlook 2007.  Is there anyway to import them back from outlook express into outlook 2007 (which uses exchange)

Answer : emails in outlook 2007 client using hosted exchange server got moved to outlook express locally

For HTA, something like this should work:
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:
<html>
<head>
<title>HTA UNC Check</title>

<HTA:APPLICATION 
     ID="objHTA"
     APPLICATIONNAME="HTA_UNC_Check"
     SINGLEINSTANCE="yes"
/>
</head>

<SCRIPT Language="VBScript">
window.resizeTo 500,200

FullName = replace(objHTA.commandLine,chr(34),"")
pos=InstrRev(FullName,"\")
FileName=Mid(FullName,pos+1)
SourceDir=Left(FullName,pos)

strUNC = "\\MYSERVER\MYSHARE"

If lcase(SourceDir) <> lcase(strUNC & "\") then window.close

</SCRIPT>

<body>
If you see this... UNC path is OK
</body>
</html>
Random Solutions  
 
programming4us programming4us