Ouvrir un fichier xml (ouvrir totalement)
Résolu
AFATIHAA
Messages postés
33
Statut
Membre
-
AFATIHAA Messages postés 33 Statut Membre -
AFATIHAA Messages postés 33 Statut Membre -
Bonjour,
j'ai vu un Tutorial qui permet d'ouvrir un fichier excel :
private void button1_Click(object sender, EventArgs e)
{
fileExcel = "notre chemin";
Excel.Application xlApp;
Excel.Workbook xlWorkBook;
xlApp = new Excel.Application();
xlWorkBook = xlApp.Workbooks.Open(fileExcel, 0, true,5, "", "", true, Microsoft.Office.Interop.Excel.XlPlatform.xlWindows,"\t",false,false,0,true,0,1);
xlApp.Visible = true;
}
Je veux faire la même chose pour un fichier .xml mais çà marche pas !!
j'ai vu un Tutorial qui permet d'ouvrir un fichier excel :
private void button1_Click(object sender, EventArgs e)
{
fileExcel = "notre chemin";
Excel.Application xlApp;
Excel.Workbook xlWorkBook;
xlApp = new Excel.Application();
xlWorkBook = xlApp.Workbooks.Open(fileExcel, 0, true,5, "", "", true, Microsoft.Office.Interop.Excel.XlPlatform.xlWindows,"\t",false,false,0,true,0,1);
xlApp.Visible = true;
}
Je veux faire la même chose pour un fichier .xml mais çà marche pas !!
A voir également:
- Ouvrir fichier xml en ligne
- Comment ouvrir un fichier epub ? - Guide
- Comment ouvrir un fichier bin ? - Guide
- Ouvrir un fichier .dat - Guide
- Comment ouvrir un fichier docx ? - Guide
- Comment réduire la taille d'un fichier - Guide