comment qu'on fait pour enregistrer ds un fichier Excel ? [Lotuscript] - Programmation
Marsh Posté le 07-11-2001 à 17:21:20
dirakocha a écrit a écrit : No idea ?? |
Essaye sur www.notes.net (tu fais une recherche dasn le forum y a pas mal d'exemples)
sinon un petit exemple
Dim OLEapplication As Variant
Dim OLEbook As Variant
Dim OLEsheet As Variant
On Error Goto Oops
Set OLEapplication = Nothing
Set OLEbook = Nothing
Set OLEsheet = Nothing
'creation d'un doc XL
' xlsheet=1
Set OLEapplication = CreateObject("Excel.Application" )
Set OLEbook = OLEapplication .Workbooks.Add
Set OLEsheet = OLEbook.WorkSheets(1)
pathXL$=OLEapplication.path
i&=1
Set doc=view.getfirstdocument
ligXL%=1
colXL%=1
While Not doc Is Nothing
OLEsheet.cells(ligXL%,colXL%).value = doc.Subject(0)
ligXL%=ligXL%+1
Set doc=col.getnextdocument(doc)
Wend
path$="c:\"
file$="ExportXL.xls"
pathfile$=path$+file$
Call OLEbook.SaveAs(pathfile$,True)
Msgbox "File save on " + pathfile$
'Et ne pas oublier de fermer à la fin
Call OLEapplication.Quit
'vide le contenu des objets OLE
Set OLEapplication = Nothing
Set OLEbook = Nothing
Set OLEsheet = Nothing
'running Xl
apprun$ = pathXL$ + "\" + "Excel.exe" + " " + Chr(34) + pathfile$ + Chr(34)
taskid% = Shell(apprun$ ,3)
Marsh Posté le 07-11-2001 à 12:31:52
Yep, en fait je voudrais mettre dans un fichier Excel certaines données provenant de document Notes. Je sais que c faisable mais je ne sais po comment le réaliser et pourtant j'en ai regardé des scripts mais aucun ne se rapproche de ce que je recherche. So si qlq1 à une suggestion...
@+
PS: M@nou si t là
---------------
Q.G Tutoriaux ici