insert into 汇总(终端编号,终端名称,地址) value (combo13.Text,combo5.Text,combo15.Text);
if combo10.Text = 汇总(XD) then insert into 汇总(XD) value (text17.Text)
else if combo10.Text = 汇总(原汁麦) then insert into 汇总(原汁麦) value (text17.Text)
else if combo10.Text = 汇总(太清) then insert into 汇总(太清) value (text17.Text)
else if combo10.Text = 汇总(X清爽) then insert into 汇总(X清爽) value (text17.Text)
else if combo10.Text = 汇总(金麦) then insert into 汇总(金麦) value (text17.Text)
else if combo10.Text = 汇总(冰爽) then insert into 汇总(冰爽) value (text17.Text)
else if combo10.Text = 汇总(元生) then insert into 汇总(元生) value (text17.Text)
End Sub
===========================================
这是窗体代码,哪里错了呢作者: OJX_01 时间: 2008-4-1 12:20
眼花,怎不用CASE作者: nirvanawjj 时间: 2008-4-1 12:57
我只是想问一下。在做数据库操作之前,比如insert into之类的之前,是不是要有个和数据库连接的过程,要的话,怎么做呢?作者: baije 时间: 2008-4-1 13:04
把所有的ELSE删掉。。。