Programalama > ASP

Etiketler: asp, ile, word, dosyalarinin, htm

Ort. 0
Puan ver:
'
' Server uzerince ms word bulunmasi gerekir :))
' RTF ve DOC formatlari icin calisiyor
' RTFFileNAme ile verilen dosyayi cHtmlFile ile verilen dosyaya kaydeder
' ------------------------------------------------------------------------
Public Function RTF2HTML(cRtfFile, cHtmFile)
   Dim wApp                 
   dim fileObj 
   
   Set fileObj = CreateObject("Scripting.FileSystemObject")
   if fileOBJ.FileExists(cRTFFile) = False Then 
      RTF2HTML = FALSE
   Else
      Set wApp = CreateObject("Word.Application")
      wApp.Visible = True
      wApp.ShowMe()
      wApp.Documents.Open(cRTFFile)
      wApp.Documents(1).Activate
      call wApp.Documents(1).saveas(cHtmFile,8)
      call wApp.Documents.close()
      wApp.Quit
      RTF2HTML = TRUE
   End if
   
   Set wApp = Nothing     
   Set fileObj = Nothing
End Function


Yorumlar                 Yorum Yaz
Bu hazır kod'a ilk yorumu siz yapın!
KATEGORİLER
ASP - 240
ASP.NET - 24
C# - 75
C++ - 174
CGI - 8
DELPHI - 247
FLASH - 49
HTML - 536
PASCAL - 246
PERL - 11
PHP - 160
WML - 9
XML - 2
Copyright © 2002 - 2024 Hazır Kod - Tüm Hakları Saklıdır.
Siteden yararlanırken gizlilik ilkelerini okumanızı tavsiye ederiz.
hazirkod.com bir İSOBİL projesidir.