|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?我要加入
x
大侠们,版主们,现我有问题如下,希望你们能帮助。
我做了个修改数据库的程序,可以增加数据,可以修改数据,可以删除数据
增加数据的时候代码如下
stra=strcat('A',num2str(j));
strb=strcat('B',num2str(j));
strc=strcat('C',num2str(j));
strcode1=mat2cell(strcode1); %这个就是解决写入数据库的时候完整的写入每格,如果不用mat2cell写入的时候入下面图示。
strname1=mat2cell(strname1); %假设变量的值是strcode1=123456strname1=中原strshort1=ZY
strshort1=mat2cell(strshort1);
xlswrite(str3,strcode1,'sheet1',stra);
xlswrite(str3,strname1,'sheet1',strb);
xlswrite(str3,strshort1,'sheet1',strc);
但是,当我对新增加的数据进行删除或者修改的时候,就不运行了,listbox就隐藏起来了,并且数据也确实删除了,出现以下警告
Warning: single-selection listbox control requires that Value be an integer within String range
Control will not be rendered until all of its parameter values are valid.
Warning: Single input behavior is obsolete and will be removed in a
future release of MATLAB. Use C={X} instead.
> In mat2cell at 54
In Update>pushbutton7_Callback at 393
In gui_mainfcn at 95
In Update at 46
Warning: Single input behavior is obsolete and will be removed in a
future release of MATLAB. Use C={X} instead.
不知道什么问题,不是很清楚,请高手指教,万分感谢。
第一个图是我新增加的数据
第二个图就是我对新增加的数据进行删除的时候,listbox就不见了。提示错误如上。 |
-
-
|