本文介绍了帮助Lplz我需要你的帮助Plz我不知道这里的问题是什么?!?!?!?!的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

if(combobox5.Itemindex:= 0)then(combobox1.visible:true + label3.visible:true);

这是在delphi 5中

PLZ我不知道有什么问题,她的人可以帮助我PLZ



i当我选择combobox5中的第一个选项时,combobox1 becom可见和label3同样

if (combobox5.Itemindex:=0) then (combobox1.visible:true+label3.visible:true);
this is in delphi 5
plz i dont know what is the problem her someone can help me plz

i want when i select the first option in combobox5 the combobox1 becom visible and label3 also

推荐答案

Quote:

这看起来不像我见过的任何Delphi代码 - 授予的数量不是很大。你将0分配给combobox5.itemindex然后添加两个布尔值?!?

尝试...

That doesn't look like any Delphi code I've seen - which granted isn't a huge amount. You are assigning 0 to combobox5.itemindex and then adding two Booleans?!?
Try ...




if combobox5.Itemindex = 0 then
Begin
     combobox1.visible := true;
     label3.visible := true;
End;


这篇关于帮助Lplz我需要你的帮助Plz我不知道这里的问题是什么?!?!?!?!的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-16 00:41