尝试从另一个.cpp启动TShape时,成员标识符预期错误

时间:2014-04-15 16:06:00

标签: c++ oop c++builder

所以,我正在尝试在派生文件中创建和初始化TShape对象,并且我希望得到E2280成员标识符。 这是代码

#include "Data.h"
#include "MainWindow.h"
#include <vcl.h>
class item{
public:
    TShape *Forma;
    TImage *Imagine;
    TLabel *Denumire, *Set, *Stat, *Price, *Weight, *Effect, *Type, *ID;
    TButton *Equip;
    item(int k);
};

item::item(int k){
    int pozitia_forma=k*130+5;
    Forma->new TShape(MainWindow_Form);
    Forma->Parent=MainWindow_Form->ScrollBox;
    Forma->Height=130;
    Forma->Width=370;
    Forma->Top=pozitia_forma;
    Forma->Left=5;
}

1 个答案:

答案 0 :(得分:1)

这种语法错误:

Forma->new TShape(MainWindow_Form);

看起来你需要

Forma = new TShape(MainWindow_Form);