以下是引用走路晃悠悠在2013-6-22 16:25:37的发言:
提示加载错误,记录编号5.form1<或者它的一个成员>正在加载表单或数据环境,文件必须以独占方式打开。
把下面的拷贝到你表单的“保存”按钮中
m_no=alltrim(thisform.txtno.value)
use tblcomplain
locate for no=m_no
if found()
messagebox('编号为'+m_no+'的投诉记录已经存在!',16,'记录重复')
return
endif
m_time=ctod(thisform.txttime.value)
m_name=alltrim(thisform.txtname.value)
m_content=alltrim(thisform.edtcontent.value)
m_contact=alltrim(thisform.txtcontact.value)
m_result=alltrim(thisform.edtresult.value)
insert into tblcomplain values(m_no,m_time,m_name,m_content,m_contact,m_result)
m_keyword=alltrim(thisform.txtkeyword.value)
for i=1 to len(m_keyword)
kw=''
do while substr(m_keyword,i,1)<>''or i<=len(m_keyword)
kw=kw+substr(m_keyword,i,1)
i=i+1
ENDDO
if not empty(kw)
insert into tblkeyword values(m_no,kw)
endif
ENDFOR
thisform.setall('value','','textbox')
thisform.setall('value','','editbox')
thisform.txtno.setfocus