Re: How can I get the Office version
- From: DavidE <DavidE@xxxxxxxxxxxxxxxxxxxxxxxxx>
- Date: Tue, 20 Sep 2005 00:10:02 -0700
Hi Damir,
Is it java script functions ?
How can I call this functions form an html/asp page ?
How can I get and use the results from those functions ?
Thanks
David
"Damir" wrote:
> try this
>
> function IS_OXP_Installed: Boolean;
> var
> Reg: TRegistry;
> begin
> Reg := TRegistry.Create;
> try
> Reg.RootKey := HKEY_LOCAL_MACHINE;
> Result :=
> Reg.KeyExists('SOFTWARE\MICROSOFT\Office\10.0\Registration');
> finally
> Reg.CloseKey;
> Reg.Free;
> end;
> end;
>
> function IS_O2003_Installed: Boolean;
> var
> Reg: TRegistry;
> begin
> Reg := TRegistry.Create;
> try
> Reg.RootKey := HKEY_LOCAL_MACHINE;
> Result :=
> Reg.KeyExists('SOFTWARE\MICROSOFT\Office\11.0\Registration');
> finally
> Reg.CloseKey;
> Reg.Free;
> end;
> end;
>
> "DavidE" <DavidE@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message
> news:3F985090-D9DE-4E53-91E2-C782D3A327E4@xxxxxxxxxxxxxxxx
> > Hi,
> > I need to know the office version of the client to use the right
> component.
> > I use OWC(Office Web Component) and there is differences between the
> versions.
> > In office 2000:classid=CLSID:0002E500-0000-0000-C000-000000000046
> > In office 2003:classid=CLSID:0002E55D-0000-0000-C000-000000000046
> > In the source it looks like this:
> > <OBJEC! id=ChartSpace1 style="WIDTH: 100%; HEIGHT: 350px"
> > classid=CLSID:0002E500-0000-0000-C000-000000000046>
> >
> > Thanks
> > David
> >
> >
> >
> >
> >
>
>
>
.
- Follow-Ups:
- Re: How can I get the Office version
- From: Damir
- Re: How can I get the Office version
- References:
- Re: How can I get the Office version
- From: Damir
- Re: How can I get the Office version
- Prev by Date: Re: Listing Event sinks
- Next by Date: Re: How can I get the Office version
- Previous by thread: Re: How can I get the Office version
- Next by thread: Re: How can I get the Office version
- Index(es):
Relevant Pages
|