« Translinguisme/Programmation » : différence entre les versions

Contenu supprimé Contenu ajouté
Ligne 214 :
!Langage!!Ouvrir!!Fermer!!Sauvegarder!!Écrire!!Paramètres des cellules
|-
| [[Programmation PHP/PEAR|PHP PEAR]] Spreadsheet<ref>[[Programmation PHP/La librairie PEAR DB]]</ref> || <font size=1>$this->Spreadsheet_Excel_Writer_Workbook($filename);<br/>$workbook = new Spreadsheet_Excel_Writer();</font> || $workbook->close(); || $workbook->sendFile(); || $worksheet->write(x,y,'Contenu'); || $format = $workbook->addFormat(<br/>array(<br/>'Size' => 10,<br/>'Align' => 'center',<br/>'Color' => 'black',<br/>'FgColor' => 'red'));
|-
| [[Programmation PHP/PHPExcel|PHPExcel]] ||
|-
| [[Visual Basic]]<ref>{{WV|Visual Basic/Lecture-écriture_des_fichiers|Fichiers en VB}}</ref><ref>http://cisternino.free.fr/informatique/excel/vba/cours_vba_excel_fiche_07.pdf</ref> || .Workbooks.Open(ActiveWorkbook.Path & "\" & "NomDuFichier") || .Close || .Save || Sheets(1).Cells(x,y).Value = "Contenu"<br/>''ou'' Sheets("feuille 1").Range(x & y).Value = "Contenu" || Range(x & y).Font.Size = 10<br/>Range(x & y).HorizontalAlignment = xlCenter<br/>Range(x & y).Font.Color = vbBlack <br/>''ou'' Range(x & y).Font.Colorindex = 2 <br/>Range(x & y).Interior.ColorIndex = 4