473,785 Members | 2,789 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Detecting MS Outlook 2002/2003

Hi all,

Via client side JavaScript I need to detect whether Outlook 2002 or
2003 is installed on a client machine. How can I do that using
JavaScript?

Thanks,

Emil
Jul 23 '05 #1
7 1911
On 27/9/04 11:49 pm, Emil Frank wrote:
Hi all,

Via client side JavaScript I need to detect whether Outlook 2002 or
2003 is installed on a client machine. How can I do that using
JavaScript?

Thanks,

Emil


You can't. Client-side Javascript is built with security features to stop
people snooping around on their visitors' systems.

However there is an HTML solution. Something like this should do the trick:

===
<FORM action="...">
<P>Do you have Outlook 2002/2003 installed?</P>
<P><LABEL><INPU T type="radio" name="have_oe" value="no" checked>
No</LABEL><BR>
<LABEL><INPUT type="radio" name="have_oe" value="yes"> Yes</LABEL></P>
<P><INPUT type="submit" value="Submit"> </P>
</FORM>
===

--
Philip Ronan
ph***********@v irgin.net
(Please remove the "z"s if replying by email)
Jul 23 '05 #2
Emil Frank wrote:

Via client side JavaScript I need to detect whether Outlook 2002 or
2003 is installed on a client machine. How can I do that using
JavaScript?

You don't. You can't - security measures stop you snooping on a client
system at all.
Jul 23 '05 #3
em********@yaho o.com (Emil Frank) wrote in message news:<6d******* *************** ****@posting.go ogle.com>...
Hi all,

Via client side JavaScript I need to detect whether Outlook 2002 or
2003 is installed on a client machine. How can I do that using
JavaScript?

Thanks,

Emil


Hi,

Hmm...on the other side there are Java Script utilities available that
allow to detect whether Office or MS Messenger is installed on the
client side.

See:

http://silkworth.net/browser_os/plugs.html

So I was wondering whether the same could be done for Outlook?

Thanks,

Emil
Jul 23 '05 #4
On 28/9/04 6:00 pm, Emil Frank wrote:
Hi,

Hmm...on the other side there are Java Script utilities available that
allow to detect whether Office or MS Messenger is installed on the
client side.

See:

http://silkworth.net/browser_os/plugs.html

So I was wondering whether the same could be done for Outlook?


The page you mentioned just checks for browser plug-ins. But even that can't
be done reliably. In fact all I get from this page is a string of Javascript
errors, which is kind of funny in a way because I'm actually using Internet
Explorer.

--
Philip Ronan
ph***********@v irgin.net
(Please remove the "z"s if replying by email)
Jul 23 '05 #5
In article <6d************ **************@ posting.google. com>,
em********@yaho o.com (Emil Frank) wrote:

Via client side JavaScript I need to detect whether Outlook 2002 or
2003 is installed on a client machine. How can I do that using
JavaScript?
No. See below. Hmm...on the other side there are Java Script utilities available that
allow to detect whether Office or MS Messenger is installed on the
client side.

See:

http://silkworth.net/browser_os/plugs.html


They seem to be doing the work Visual Basic.

<script type="text/vbscript"><!--
on error resume next
Function CanCreate(ctlNa me)

And use:
r = new ActiveXObject(c tlName);

Glad I use Netscape as my browser.
Robert
Jul 23 '05 #6
In article <6d************ **************@ posting.google. com>,
em********@yaho o.com enlightened us with...
Hi all,

Via client side JavaScript I need to detect whether Outlook 2002 or
2003 is installed on a client machine. How can I do that using
JavaScript?


Use an HTA (jscript). You have a lot more options there.

This cannot be done without supressing normal javascript security, which an
HTA is not subject to. I assume this is for an intranet app. Any other use,
you really can't.
--
--
~kaeli~
Join the Army, meet interesting people, kill them.
http://www.ipwebdesign.net/wildAtHeart
http://www.ipwebdesign.net/kaelisSpace

Jul 23 '05 #7
Hi,

Thanks for your help!

Can you please point me to a few JScript samples that illustrate how
this could be done!

Thanks in advance,

Emil
kaeli <ti******@NOSPA M.comcast.net> wrote in message news:<MP******* *************** **@nntp.lucent. com>...
In article <6d************ **************@ posting.google. com>,
em********@yaho o.com enlightened us with...
Hi all,

Via client side JavaScript I need to detect whether Outlook 2002 or
2003 is installed on a client machine. How can I do that using
JavaScript?


Use an HTA (jscript). You have a lot more options there.

This cannot be done without supressing normal javascript security, which an
HTA is not subject to. I assume this is for an intranet app. Any other use,
you really can't.
--

Jul 23 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
2486
by: Al Franz | last post by:
Just upgraded from Outlook 2002 to 2003 for my email reader. And emails I get from a PERL script now display the $eol written in PERL as a space instead of a carriage return and line feed as they did in Outlook 2002. What is going on? Should this code be something other then $eol in PERL to satisfy a majority of email readers?
0
261
by: dls | last post by:
Whenever I start VS.NET (1.0) the MSI installer runs to configure Outlook 2002. Is there a conflict here? Outlook 2002 seems to run ok.
0
1452
by: ifeoma | last post by:
I have a script which sends emails through Access. It sends these emails as if it was sent through Outlook. I had no problem with this using Office 2000 but with the newer Outlook 2002 it asks if I want to send the email (Yes/No/Cancel). And sometimes you don't see it asking you this. How do I tell Outlook 2002 to send it without asking? Thanks, Chris
0
872
by: M O J O | last post by:
Hi, I want to mimic Ms Outlook 2002/2003's To, Cc and Bcc TextBoxes. That is, I want to be able to underline part of the text in the TextBox. Since I can't imagine that .Net's TextBox is able to do this, I tend to use RichTextBox, but it isn't XP themed. Here's my questions:
2
2695
by: Neal Miller | last post by:
Hi all Is there any way to disable the Outlook warning that pops up when a program tries to access these Outlook objects I'd be happy to enter the password into a program, but I cannot figure out how to achieve this Thanks Neal Miller
0
1150
by: Water Cooler v2 | last post by:
How do you check for the existence of new/unread email in Microsoft Outlook 2002 using the Outlook Object Model with COM Interop, and not using MAPI/CDO to go to the Exchange server? For e.g this snippet uses CDOSYS for Win NT, but I want to use the Outlook Object Model and check at the client (using the inspector/explorer object) and not at the server. http://www.codeproject.com/csharp/gmcdoexmail.asp
2
1348
by: The Facilitator | last post by:
Hello all, Was just wondering how to import the category list to Access 2002 from Outlook 2002? I am setting up some reports where I am using the tasks in Outlook and one of the queries I need to create would be using categories. Thanks for all the help
0
1158
by: mdevenney | last post by:
My company doesn't allow for the use of .pst files. So to archive email we have to select the email(s) and click save as or drag them to a folder. I want to write a c# app that will show your Outlook Inbox and all subfolders in a TreeView and allow the user to select one, type in a date and click a button to save all items in the selected folder to the destination they choose. I'm ok with the TreeView.Nodes.Add() method, it's iterating...
1
1461
seraieis
by: seraieis | last post by:
Hello all! I'm having a strange issue happen from a recent upgrade from Outlook 2002 to 2003. Here is a dumbed down version of the main loop I'm using to debug the problem: Dim app As Outlook.Application Dim ns As Outlook.namespace Dim inbox As Outlook.mapifolder Dim item As Object Dim msg As Outlook.mailitem
0
9645
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10327
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10092
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
1
7499
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5381
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5511
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4053
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3647
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2879
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.