主题:合并dbf的问题
各个单位导出同样类型的数据库,我想通过一个摁钮来选择合并到当前自己用的数据库,command1的click事件代码如下:(当前程序数据库名为zfmx)
fname=getfile('dbf')
if file(fname)
if not used('zfmx')
use zfmx in 0
endif
IF NOT USED('&fname')
USE &fname IN 0
endif
select zfmx
insert into zfmx sele * from &fname
CLOSE DATABASES
Messagebox('数据合并成功',64,'系统提示')
Select zfmx
set order to 编号
GO top
else
Messagebox('用户已取消',64,'系统提示')
return
ENDIF
在我自己的电脑上运行正常,在别人的电脑上却提示"命令中含有不可识别的命令或关键字",对方电脑上哪怕装了vfp9也是这样出错提示
请教各位,如何解决?
fname=getfile('dbf')
if file(fname)
if not used('zfmx')
use zfmx in 0
endif
IF NOT USED('&fname')
USE &fname IN 0
endif
select zfmx
insert into zfmx sele * from &fname
CLOSE DATABASES
Messagebox('数据合并成功',64,'系统提示')
Select zfmx
set order to 编号
GO top
else
Messagebox('用户已取消',64,'系统提示')
return
ENDIF
在我自己的电脑上运行正常,在别人的电脑上却提示"命令中含有不可识别的命令或关键字",对方电脑上哪怕装了vfp9也是这样出错提示
请教各位,如何解决?