本帖最后由 chzj589 于 2013-6-18 22:35 编辑
连接ACCESS数据库账务软件,求实现余额自动计算Func xie();开支添加
If GUICtrlRead($Input1)<>'' And GUICtrlRead($Input6)<>'' Then
$read1=GUICtrlRead($Input1)
$read2=GUICtrlRead($Input2)
$read3=GUICtrlRead($Input3)
$read4=GUICtrlRead($Input4)
$read5=GUICtrlRead($Input5)
$read6=GUICtrlRead($Input6)
;$read7=GUICtrlRead($Input7)
$addfld = ObjCreate("ADODB.Connection")
$addfld.Open("Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" &$mdb_data_path & ";Jet Oledb:Database Password=" & $mdb_data_pwd)
$addfld.execute("insert into "&$tblname&" (name,ssex,qq,kahu,beizu1,dbRemark1) values('"&$read1&"','"&$read2&"','"&$read3&"','"&$read4&"','"&$read5&"','"&$read6&"')")
$addfld.close
du()
GUISetState(@SW_HIDE, $K_Form2)
Else
MsgBox(48,'错误','请检查输入是否完整')
EndIf
EndFunc
感谢Kodin与auto两位老大的指导和帮助,现己解决问题。
|