曾经用过这两个函数,觉得没有什么相关的。如Assign函数,comboBox1.Items.Assign(stringlist1);
//把stringlist1列表赋值给comboBox1列表框。如Assigned函数:用来判断某一指针(pointer)或过程引用是否为nil(空),如果为空则返回假(false)。if (Not assigned(form2)) then
form2:=Tform2.Create(Self);
//在SHOW前判断如果Form2为nil则创建form2窗体。form2.show;