Hi Ajit,
You can use standard DDL to create FoxPro tables, and use the FoxPro and
Visual FoxPro OLE DB data provider which is downloadable from
http://msdn.microsoft.com/vfoxpro/downloads/updates .
'-- Character, Integer, Numeric, Date, DateTime, Memo
strSQL = "Create Table MyTable (Field1 C(10), Field2 I, Field3 N(10, 2),
Field4 D, Field5 T, Field6 M)"

Signature
Cindy Winegarden MCSD, Microsoft Most Valuable Professional
cindy_winegarden@msn.com www.cindywinegarden.com
Blog: http://spaces.msn.com/members/cindywinegarden
>I want to create a dbf (foxpro) file from a dataset in VB.Net (Framework
>1.1)
> in VB.Net program. The dataset has data which needs to be copy to dbf. How
> to
> do this?