C cnnoah Unregistered / Unconfirmed GUEST, unregistred user! 2002-11-29 #1 为什么我在dataModule中的adoquery---afteropen事件中向form1的combox加入items, 编译提示地址有冲突?
R resun Unregistered / Unconfirmed GUEST, unregistred user! 2002-11-29 #2 没见过,帮你提前 或者不要用afteropen,放到别的地方试试有没有问题,有可能是逻辑错误
K KeepObject Unregistered / Unconfirmed GUEST, unregistred user! 2002-11-29 #3 可能是你的form1还没有创建你就在DataModule在的adoQuery的afteropen事件中引用了该窗 体上的combox1.最好在afteropen中加个判断该窗体是否已创建. if Application.FindComponent('Form1')=nil then Application.CreateForm(TForm1,Form1);
可能是你的form1还没有创建你就在DataModule在的adoQuery的afteropen事件中引用了该窗 体上的combox1.最好在afteropen中加个判断该窗体是否已创建. if Application.FindComponent('Form1')=nil then Application.CreateForm(TForm1,Form1);