Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

opening .Doc files in Word

Status
Not open for further replies.

bereza

Technical User
Jun 14, 2006
105
EU
hi,

I have created a web part that finds .doc files which contains a specific search phrase, it works good , their name is a link when you click it, it opens a new Internet Explorer fönster. the problem is i want to open them in word not IE to modify and save them.

i found following script but i dont know how should i use it because i list files name in the a label by using StringBuilder.

hej,

Jag ha gjort en web part som söker efter .doc filer som ligger i Shared documents och innehåller en specifik sökord, det funkar bra problemet är att jag har inte lyckats att oppna dem i word när jag klickar på deras namn som är en länk.
jag hittade följande script som jag tror används för att oppna doc filer i Word men jag vet inte hur jag ska använda den för att jag listar filernas namn på en och samma label med hjälp av StringBuilder och deras namn är en länk när man klickar på den får man upp ny IE fönster.
jag vill att man ska kunna öppna dem i word i stället.

<script type="text/javascript">
var wordApp = new ActiveXObject("Word.Application");
wordApp.Visible = true;
wordApp.Documents.Open("[UrlOfWordDocument]");
</script>

thank you for your help
 
I've got the same issue but can someone translate the reply for me.
Thanks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top