hello expert
i want to design a programe in which i want to access a foxpro file and make some modicfication with programe and then make the modified file in foxpro format. Is it right to use the following code
[CODE=vb]Set dbMn = Workspaces(0).O penDatabase(dbf path & "\", False, False, "dBase IV")
Set rsMn = dbMn.OpenRecord set("select * from " & dbfname)
txtpth = dbfpath & "\" & Replace(UCase(d bfname), ".DBF", ".DBF")
Open txtpth For Output As #1[/CODE]
THANKS IN ADVANCE
i want to design a programe in which i want to access a foxpro file and make some modicfication with programe and then make the modified file in foxpro format. Is it right to use the following code
[CODE=vb]Set dbMn = Workspaces(0).O penDatabase(dbf path & "\", False, False, "dBase IV")
Set rsMn = dbMn.OpenRecord set("select * from " & dbfname)
txtpth = dbfpath & "\" & Replace(UCase(d bfname), ".DBF", ".DBF")
Open txtpth For Output As #1[/CODE]
THANKS IN ADVANCE
Comment