Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1023431
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T11:37:06+00:00 2026-05-16T11:37:06+00:00

LANGUAGE: C#, System: Windows7, Excel 2007 I want to create a .DBF from some

  • 0

LANGUAGE: C#, System: Windows7, Excel 2007

I want to create a .DBF from some data, and i want to open it from Excel 2007. It can be either dBase or foxpro. I am currently doing in FoxPro9 (btw this code is from the internet):

 OleDbConnection con = new OleDbConnection("Provider=VFPOLEDB.1;Data Source=C:\\Temp\\;");
            con.Open();
            OleDbCommand cmd1 = new OleDbCommand("Create Table TestDBF (Field1 I, Field2 C(10))", con);
            OleDbCommand cmd2 = new OleDbCommand("Insert Into TestDBF Values (1, 'Hello')", con);
            OleDbCommand cmd3 = new OleDbCommand("Insert Into TestDBF Values (2, 'World')", con);
            cmd1.ExecuteNonQuery();
            cmd2.ExecuteNonQuery();
            cmd3.ExecuteNonQuery();
            con.Close();

This generates the file, which i can open in DbfViewer, however, i cant open it in Excel 2007 nor use in some applications i have. I can manually convert the FoxPro .dbf to a dbaseIII dbf using the DbfViwer, but i want it to be automatic.

Any ideas?

Thanks in advance

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T11:37:08+00:00Added an answer on May 16, 2026 at 11:37 am

    Here’s a little console app that will create a DBF using the CREATE TABLE SQL syntax and then copy it to a previous version of the FoxPro DBF file format that can be opened in Excel.

    static void Main(string[] args)
    {
        Console.WriteLine("Starting program execution...");
    
        string connectionString = @"Provider=VFPOLEDB.1;Data Source=C:\YourDirectory\";
    
        using (OleDbConnection connection = new OleDbConnection(connectionString))
        {
            using (OleDbCommand scriptCommand = connection.CreateCommand())
            {
                connection.Open();
    
                string vfpScript = @"Create Table TestDBF (Field1 I, Field2 C(10))
                                    USE TestDBF
                                    COPY TO OpensWithExcel TYPE Fox2x
                                    USE";
    
                scriptCommand.CommandType = CommandType.StoredProcedure;
                scriptCommand.CommandText = "ExecScript";
                scriptCommand.Parameters.Add("myScript", OleDbType.Char).Value = vfpScript;
                scriptCommand.ExecuteNonQuery();
            }
        }
    
        Console.WriteLine("End program execution...");
        Console.WriteLine("Press any key to continue");
        Console.ReadLine();
    }
    

    }

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

What is the correct way of knowing operating system language (locale) from java code?
I basically want to know what the system's input language is currently on (for
System: Windows7, Access 2003, .mdb file, C# language, VS 2010 I'm doing queries with
Im trying to set Language for System.Windows.Control.RichTextBox as es-PE, but I found some issues,
I want to run some system commands (to fix things) before running an executable.
I want to create excel files in Groovy, then have them plotted. This code
As we know, in windows system, we can set locale language for non-Unicode programs
Context Language: C# Platform Version: Microsoft .Net Framework 4.0 Operating System: Windows 7 Professional
I'm creating xml-like mark-up language using System.Xml.XmTextWriter that will be read by a third
I'm working on converting an old define()-based language/translation system to a more flexible one

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.