473,545 Members | 1,779 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

A question mostly about Word and Office and thus: OT

I asked this question in Microsoft.Publi c.Word two days ago but I have
not received an answer. I believe there are Office Experts here who may
be able to help.

---------

"A friend has Office 2000. She is a high school student. English is not
her first language.

I find the "Lookup" facility in Word 2003 very useful. I think she woud
too.

Can I install Word 2003 (legal and paid for, of course) over her Office
2000 Professional installation? Will all the other Office 2000
applications work if I do? (She is a serious student and uses Power
Point frequently to create presentations, and Excel as well).

Do you have any advice or opinions about this?

Perhaps, I am simply missing a way to enable Research in Office 2000?

I did a cursory Google search for this topic but did not find anything
definitive, I apologize if it is something like [how to calculate age]
in the MS-Access forums, a topic that has been answered a million
times."

--------

I should ask as well about installing Word 2003 separately and leaving
the Office 2000 installation undisturbed. Would that work? Would the
Research Facility be available in such a set-up?

Mar 13 '06 #1
4 1673

"Lyle Fairfield" <ly***********@ aim.com> schreef in bericht news:11******** *************@e 56g2000cwe.goog legroups.com...
I asked this question in Microsoft.Publi c.Word two days ago but I have
not received an answer. I believe there are Office Experts here who may
be able to help.

---------

"A friend has Office 2000. She is a high school student. English is not
her first language.

I find the "Lookup" facility in Word 2003 very useful. I think she woud
too.

Can I install Word 2003 (legal and paid for, of course) over her Office
2000 Professional installation? Will all the other Office 2000
applications work if I do? (She is a serious student and uses Power
Point frequently to create presentations, and Excel as well).

Do you have any advice or opinions about this?

Perhaps, I am simply missing a way to enable Research in Office 2000?

I did a cursory Google search for this topic but did not find anything
definitive, I apologize if it is something like [how to calculate age]
in the MS-Access forums, a topic that has been answered a million
times."

--------

I should ask as well about installing Word 2003 separately and leaving
the Office 2000 installation undisturbed. Would that work? Would the
Research Facility be available in such a set-up?


Hi Lyle,
I am not an Office expert but I can tell you from experience that your second option would work.
I don't see any reason why option 1 would not work but I did not try that myself.
I have the completely installed Office 97, Office 2000 and Office 2003 here on my PC.
So I have three versions of Word, Excel, PPoint, and even 4 versions of Access (also 2.0) here.
(I need/want this to check some backward-compatibility issues sometimes)
Office 97, and 2000 (Word and all other apps) work as expected and Word 2003 indeed has the research-feature.
I think this is a new feature, only available in Word2003 or Excel2003.
I installed the Office-versions in
\Program Files\Microsoft Office97
\Program Files\Microsoft Office2000
\Program Files\Microsoft Office2003
and everything (all apps) co-exists fine.

So I would say go ahead and install Word 2003 in a seperate directory, leaving the initial Office2000-install undisturbed.

Arno R
Mar 13 '06 #2
You can install as many different versions of Office on your PC as you
want - but that comes with a warning - they share some dlls. So when
you install a later version, many of the shared dlls will be
overwritten with the later versions.

I dont know about other office programs - but this can cause havoc in
Access if it catches you off guard. An example one such dll is vbe6. If
you inadvertently update vbe6.dll on one pc but not another (can happen
from an office update even if you keep the same version of access) -
and make code changes to the same database from both PCs you can wind
up corrupting the database beyond use (learned that one the hard way!).
Also be advised that the uninstall that comes with office programs will
not revert such shared dlls to their previous versions. - but all that
is probably of little or no bearing to what your friend is doing. I'd
say there'd be no prob running different versions of word, excel,
powerpoint etc.

As for the Lookup Facility - haven't a clue - sorry!!!

Mar 13 '06 #3
Thanks. Access, VB and and VBA are afraid of me; they'll behave. It's
only other Office programs that I am worried about. I'll go ahead with
a separate installation.

Mar 13 '06 #4
Thanks, Arno. I plan to go ahead with the separate installation.

Mar 13 '06 #5

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

Similar topics

8
3002
by: Jaime Rios | last post by:
Hi, I created a COM AddIn for Word that performs the functions that it needs to, but I needed to add the ability for the toolbar created by the COM AddIn to remember it's last position and whether it was docked or not. I added the following code to my "OnConnection" function but it fails with an error, "Run-time exception thrown :...
0
1229
by: Chris J | last post by:
Hi all, ] I'm having a problem with Word 2002 when downloading a Word document with IE6. This is in an intranet application, and the download occurs through an ASP that does security checks (amongst other things) before passing the document back to the client. What seems to be happening is that, when the ASP sets a content-type of
10
3026
by: Neil | last post by:
An article at http://news.com.com/2100-1012-991694.html?tag=fd_top states: "XML would allow easier interchange of data generated in Office documents with back-end systems or existing Web services." As part of an Access 2000 application, I have to continually parse Word documents and store the parsings in Access tables using Automation to...
8
3162
by: sudha | last post by:
Hi, To open a word doc from c#, i use the following code : Word.ApplicationClass WordApp = new Word.ApplicationClass (); // give any file name of your choice. object fileName = "C:\\test.doc"; object readOnly = false;
5
6687
by: John Smith | last post by:
Hey folks, I'm creating an MS Word document in a C# Windows application. Because the client base has so many different versions of Word they are using, I opted to go with late binding to create the document. **Everything works great, but I can't figure out how to do 2 things: 1) Double Spacing 2) Insert a Page Break
6
2188
by: jimryder | last post by:
Hi, The following snippet: (ds is a populated dataset) string sXSLT = @"C:\XML\template\template.xsl"; string sTemp = @"C:\XML\temp\temp.xml"; string sOutput = @"C:\XML\output\output.xml"; ds.WriteXml(sTemp);
0
2005
by: SergioT | last post by:
hi I m getting an error when I run my application on the server, that error doesn't ocur when I run the application on the development computer the error is: =============================================================================================== Error de servidor en la aplicación '/APPWebApp'....
2
4863
by: Derek Hart | last post by:
I am using late bound Microsoft Word integration with a vb.net winforms application. If I run code such as the following: Dim objWord As Object Dim objWrdDoc As Object Dim count As Integer Dim filename As String filename = "c:\temp\mergedata\1.doc" objWord = CreateObject("Word.Application") For count = 1 To 10000
6
6761
by: nagar | last post by:
I need to get the list of Autocorrect entries in word. Is there a way to do it without connecting to Word? Is the list saved somewhere? If I need to connect to Word, how can I detect if it's installed on the user machine? Thanks. Andrea
0
7393
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
7803
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
1
7411
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...
0
5965
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
1
5322
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...
0
3444
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...
0
3439
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
1871
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
0
695
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...

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.