Kao,怎么这里的人连同情心都没有,难道世事真就如此了?算了,我还是下线了

解决方案 »

  1.   

    Acess violation at address:0000000,说明使用了空指针 nil;
      

  2.   

    你的TStrings是没有分配内存的,当然不能对它赋值
    可能的解决方法是FMyRecords[index].ComboItems := TStrings.Create;
    FMyRecords[index].ComboItems.Assign(Value.ComboItems);<======
      

  3.   

    我是为TStrings分配内存的,而且只能为TStringList.Create创建,用TStrings.Create用报一个静态方法错,而TStringList.Create我是看TCombobox中的代码做的
      

  4.   

    TStrings只是抽象类,无法分配内存的
      

  5.   

    TStrings只是抽象类,无法创建实例的。
      

  6.   

    Nicrosoft(奈软)说的对,要用TStringlist.create