如何在 C# 中打开 *.dbf 电子表格文件
我正在使用 Visual Studio 2010 Ultimate。在一个简单的 Windows 应用程序中,我只想拥有一个带有数据网格的表单和一个用于打开 *.dbf 电子表格文件并将所有数据放入数据网格的按钮。我正在使用 C#。你能帮忙吗?
I'm using Visual Studio 2010 Ultimate. In a simple Windows application I just want to have one form with a datagrid and a button that open the *.dbf spreadsheet file and put all the data in the dataGrid. I'm using C#. Could you help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在此处找到设置 ODBC 连接的基本代码:http://joskovski.blogspot.com/2010/03/reading-dbf-files-from-net.html
然后你可以使用类似
dataGridView1.DataSource = dt;
You'll find the basic code for setting up an ODBC connection here: http://joskovski.blogspot.com/2010/03/reading-dbf-files-from-net.html
And then you can uses something like
dataGridView1.DataSource = dt;