using System.Data;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
using Excel = Microsoft.Office.Interop.Excel;
namespace primaryprogres
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
Excel.Application xlApp = new Excel.Application();
Excel.Workbook xlWorkbook = xlApp.Workbooks.Open(@"C:\Users\Ufficio\Desktop\Cartel6.xlsx");
Excel._Worksheet xlWorksheet = xlWorkbook.Sheets[1];
Excel.Range xlRange = xlWorksheet.UsedRange;
textBox1.Text = xlRange.Cells[1, 1].Value2.ToString();
}
}
}
}
Devo realizzare un programma che legge i dati DDE presenti all'interno di una cella Excel, sono riuscito ad importare i dati ma non si aggiornano in automatico per l'aggiornamento devo cliccare su salva nel file Excel e poi cliccare nuovamente il bottone nel Form, qualcuno può darmi una mano ? grazie.