A Microsoft Outlook email forum. Outlook Banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Express Email Newsgroup » Outlook Express
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

OE default



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old March 28th 06, 12:10 PM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
maeve
external usenet poster
 
Posts: 15
Default OE default

I have OE as my default mail client but when I right click and 'send to'
mail recipient it opens as outlook and I don't have my addresses there, so I
now open OE and attach what I want to send. I used to be able to do it but
it has changed since my son reinstalled windows! How do I change it to open
OE? Thanks


  #2  
Old March 28th 06, 12:14 PM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
Alias
external usenet poster
 
Posts: 164
Default OE default

maeve wrote:
I have OE as my default mail client but when I right click and 'send to'
mail recipient it opens as outlook and I don't have my addresses there, so I
now open OE and attach what I want to send. I used to be able to do it but
it has changed since my son reinstalled windows! How do I change it to open
OE? Thanks



Make sure it's the default in Internet Explorer. Open IE/Tools/Internet
Options/Programs.

Alias
  #3  
Old March 28th 06, 12:23 PM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
maeve
external usenet poster
 
Posts: 15
Default OE default

I have OE OK in IE, but still when I right click and 'send to' mail
recipient it opens in outlook!
"Alias" wrote in message
...
maeve wrote:
I have OE as my default mail client but when I right click and 'send to'
mail recipient it opens as outlook and I don't have my addresses there,
so I now open OE and attach what I want to send. I used to be able to do
it but it has changed since my son reinstalled windows! How do I change
it to open OE? Thanks


Make sure it's the default in Internet Explorer. Open IE/Tools/Internet
Options/Programs.

Alias



  #4  
Old March 28th 06, 04:10 PM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
Miyahn
external usenet poster
 
Posts: 39
Default OE default

"maeve" wrote in message
I have OE OK in IE, but still when I right click and 'send to' mail
recipient it opens in outlook!


How about the following HTA?

!-- FileName : MyMailerEn.hta --
htmlhead
meta http-equiv=Content-Type content="text/html; charset=en-us"
titleSelection of Mail Client/title
hta:application scroll="no"/
script language=vbs
Option Explicit
Const ClientKey = "Software\clients\mail\"
Const W = 300, H = 200: Dim Form
With window
.resizeTo W, H
.moveTo (screen.availWidth - W) \ 2, (screen.availHeight - H) \ 2
End With
'
Sub Initialize()
Dim Client, SubKeys, aSubKey, aOption
Set Form = document.all
With CreateObject("WScript.Shell")
On Error Resume Next
Client = .RegRead("HKCU\" & ClientKey)
If Err Then Client = .RegRead("HKLM\" & ClientKey)
On Error GoTo 0
End With
If EnumKey("HKLM\" & ClientKey, SubKeys) 0 Then Me.Close
For Each aSubKey In SubKeys
Set aOption = document.createElement("option")
Form.Clients.options.add(aOption)
aOption.innertext = aSubKey: aOption.value = aSubKey
If aSubKey = Client Then aOption.selected = True
Next
End Sub
'
Sub SetClient
With CreateObject("WScript.Shell")
.RegWrite "HKCU\" & ClientKey, Form.Clients.value
If Form.CB1.Checked Then _
.RegWrite "HKLM\" & ClientKey, Form.Clients.value
End With
End Sub
'
Function EnumKey(ByVal MainKey, SubKeys)
Const HKCR = "HKEY_CLASSES_ROOT", HKCU = "HKEY_CURRENT_USER"
Const HKLM = "HKEY_LOCAL_MACHINE", Tmp = "Temp.reg"
Dim Buf, Pat, cRes, aRes, aKey
Select Case Left(MainKey, 4)
Case "HKCR": MainKey = HKCR & Mid(Mainkey, 5)
Case "HKCU": MainKey = HKCU & Mid(Mainkey, 5)
Case "HKLM": MainKey = HKLM & Mid(Mainkey, 5)
End Select
With CreateObject("WScript.Shell")
.Run "Regedit /e " & Tmp & " """ & MainKey & """", 0, True
End With
With CreateObject("Scripting.FileSystemObject")
If Not .FileExists(Tmp) Then EnumKey = 1: Exit Function
With .OpenTextFile(Tmp, 1, False, -2)
Buf = .ReadAll: .Close
End With
.DeleteFile Tmp
End With
Pat = "\[" & Replace(MainKey, "\", "\\") & "\\([^\]\\]+)"
With New RegExp
.IgnoreCase = True: .Global = True
.Pattern = Pat: Set cRes = .Execute(Buf)
End With
If cRes.Count = 0 Then EnumKey = 1: Exit Function
With CreateObject("Scripting.Dictionary")
For Each aRes In cRes
aKey = aRes.SubMatches(0)
If Not .Exists(aKey) Then .Add aKey, ""
Next
SubKeys = .Keys(): EnumKey = 0
End With
End Function
'
/script/headbody onload=Initializeform
pChange Mail Client invoked by br
   'SendTo - MailRecipient'br/p
pClient : select id=Clients/selectbr
input type=checkbox id=CB1Change also Default Client/p
p align=centerinput type=button value=Set onclick=SetClient
    input type=button value=Quit onclick=close/p
/form/body/html

--
Miyahn (Masataka Miya****a) JPN
Microsoft MVP for Microsoft Office - Excel(Jan 2006 - Dec 2006)


  #5  
Old March 28th 06, 04:42 PM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
Miyahn
external usenet poster
 
Posts: 39
Default OE default

Sorry for mistake.

meta http-equiv=Content-Type content="text/html; charset=en-us"


Should be,
meta http-equiv=Content-Type content="text/html; charset=us-ascii"

--
Miyahn (Masataka Miya****a) JPN
Microsoft MVP for Microsoft Office - Excel(Jan 2006 - Dec 2006)


  #6  
Old March 28th 06, 04:21 PM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
Alias
external usenet poster
 
Posts: 164
Default OE default

maeve wrote:
I have OE OK in IE, but still when I right click and 'send to' mail
recipient it opens in outlook!


Have you checked in OE to see if OE thinks it is the default program?

Alias
"Alias" wrote in message
...
maeve wrote:
I have OE as my default mail client but when I right click and 'send to'
mail recipient it opens as outlook and I don't have my addresses there,
so I now open OE and attach what I want to send. I used to be able to do
it but it has changed since my son reinstalled windows! How do I change
it to open OE? Thanks

Make sure it's the default in Internet Explorer. Open IE/Tools/Internet
Options/Programs.

Alias



  #7  
Old March 28th 06, 05:01 PM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
Bruce Hagen
external usenet poster
 
Posts: 10,210
Default OE default

Maeve:

Updates for Outlook often change it to the default e-mail client, even
though it appears OE is the default. See if these links help. If they do,
save them. you'll need it for future Outlook updates.

Make OE the default e-mail client:
http://www.oehelp.com/oedef.aspx

See this if it still does not set as default:
http://support.microsoft.com/?kbid=306098
--
Bruce Hagen
MS MVP - Outlook Express
~IB-CA~

"maeve" wrote in message
...
I have OE as my default mail client but when I right click and 'send to'
mail recipient it opens as outlook and I don't have my addresses there, so
I now open OE and attach what I want to send. I used to be able to do it
but it has changed since my son reinstalled windows! How do I change it to
open OE? Thanks


  #8  
Old March 29th 06, 12:27 AM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
maeve
external usenet poster
 
Posts: 15
Default OE default

Thanks very much, seems OK now.
"Bruce Hagen" wrote in message
...
Maeve:

Updates for Outlook often change it to the default e-mail client, even
though it appears OE is the default. See if these links help. If they do,
save them. you'll need it for future Outlook updates.

Make OE the default e-mail client:
http://www.oehelp.com/oedef.aspx

See this if it still does not set as default:
http://support.microsoft.com/?kbid=306098
--
Bruce Hagen
MS MVP - Outlook Express
~IB-CA~

"maeve" wrote in message
...
I have OE as my default mail client but when I right click and 'send to'
mail recipient it opens as outlook and I don't have my addresses there, so
I now open OE and attach what I want to send. I used to be able to do it
but it has changed since my son reinstalled windows! How do I change it to
open OE? Thanks




  #9  
Old March 29th 06, 12:35 AM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
maeve
external usenet poster
 
Posts: 15
Default OE default

Hi, had thought it fixed, real weird. If I open a folder and right click a
file to sendto, it opens in OE but if I try to send from desktop, it opens
in Outlook. What now?


"Bruce Hagen" wrote in message
...
Maeve:

Updates for Outlook often change it to the default e-mail client, even
though it appears OE is the default. See if these links help. If they do,
save them. you'll need it for future Outlook updates.

Make OE the default e-mail client:
http://www.oehelp.com/oedef.aspx

See this if it still does not set as default:
http://support.microsoft.com/?kbid=306098
--
Bruce Hagen
MS MVP - Outlook Express
~IB-CA~

"maeve" wrote in message
...
I have OE as my default mail client but when I right click and 'send to'
mail recipient it opens as outlook and I don't have my addresses there, so
I now open OE and attach what I want to send. I used to be able to do it
but it has changed since my son reinstalled windows! How do I change it to
open OE? Thanks




  #10  
Old March 29th 06, 02:49 AM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
Bruce Hagen
external usenet poster
 
Posts: 10,210
Default OE default

Now we wait for an answer from someone else. I thought what I gave you would
have fixed it.
--
Bruce Hagen
MS MVP - Outlook Express
~IB-CA~

"maeve" wrote in message
...
Hi, had thought it fixed, real weird. If I open a folder and right click
a file to sendto, it opens in OE but if I try to send from desktop, it
opens in Outlook. What now?


"Bruce Hagen" wrote in message
...
Maeve:

Updates for Outlook often change it to the default e-mail client, even
though it appears OE is the default. See if these links help. If they do,
save them. you'll need it for future Outlook updates.

Make OE the default e-mail client:
http://www.oehelp.com/oedef.aspx

See this if it still does not set as default:
http://support.microsoft.com/?kbid=306098
--
Bruce Hagen
MS MVP - Outlook Express
~IB-CA~

"maeve" wrote in message
...
I have OE as my default mail client but when I right click and 'send to'
mail recipient it opens as outlook and I don't have my addresses there,
so I now open OE and attach what I want to send. I used to be able to do
it but it has changed since my son reinstalled windows! How do I change
it to open OE? Thanks





 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
"The specified default store could not be opened. Please make sure you can access your default store and try again." [email protected] Outlook - General Queries 2 February 17th 06 04:58 PM
Default day on default monthly calendar wrong brad elliott Outlook - Calandaring 6 February 2nd 06 01:17 AM


All times are GMT +1. The time now is 07:07 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2025 Outlook Banter.
The comments are property of their posters.