ombre
Goto Top

.xls nicht mit dem IE öffnen

intranet Problem

Hallo zusammen,

Ich möchte in einem Intranet .xls verknüpfen. Die sollte dann jeder bearbeiten können. da aber alle die an dieses Netz angschlossen sind, angefressene Internet Explorer benutzer sind und dieser .xls und .doc etc... bekanntlich mit einem addin aufmacht und nicht mit Excel oder Word gibt dies Probleme.

Bei .doc hab ich folgende Lösung angewandt:

[code]<script Language=VBScript>
<!--
function load_word(mode, pfad)
'mode 0 = normal open
'mode 1 = open as dot
Set appWord = CreateObject("Word.Application")
' Display the application.
appWord.WindowState = 0
appWord.Height = 600
appWord.Width = 800
appWord.Left = 40
appWord.Top = 20
appWord.Visible = TRUE

' Open the document.
' mode 1 = dot file 0 = docfile
if mode = 1 then appWord.Documents.Add (pfad) end if
if mode = 0 then appWord.Documents.Open (pfad) end if
' Close the object variable.
Set appWord = Nothing
end function
-->
</script>[/code]

und dann mit

[code]onClick="load_word '0', 'http://mein.doc'";[/code]

dies funktioniert eiwandfrei.

Könnte mir jemand helfen etwas ähndliches fü excel zu finden...

Danke im voraus

greets ombre

Content-Key: 40123

Url: https://administrator.de/contentid/40123

Printed on: April 16, 2024 at 03:04 o'clock

Member: thekingofqueens
thekingofqueens Sep 14, 2006 at 16:13:54 (UTC)
Goto Top
Du kannst auch mit dem Shared Computer Toolkit von MS das öffnen von Office Dateien mit dem Internet Explorer verbieten.
Member: ombre
ombre Sep 15, 2006 at 07:06:51 (UTC)
Goto Top
Herzlichen Dank...
warum konnte mir das keiner früher sagen face-smile

greets ombre