新手求教,如何在程序中查看变量的值
void __fastcall TDraw::EquipmentTypeClick(TObject *Sender)
{
TImage *CurrentImage=static_cast<TImage *>(Sender);
CurrentEquipmentType=CurrentImage->Tag; //当前选中的设备类型
//设置图片选中框的属性(左上角、宽高等)
LabelForSelectEquipmentType->Top=CurrentImage->Top;
LabelForSelectEquipmentType->Left=CurrentImage->Left;
LabelForSelectEquipmentType->Width=CurrentImage->Width;
LabelForSelectEquipmentType->Height=CurrentImage->Height;
EnableSelectUseDrag=false; //禁止进行框选
}
我在这段小程序中,想要查看下TAG的值,请问该怎么调试呢?
以前用C#,设置断点,调试,程序中断,直接可以看到了,用BCB不太懂,请指教
[解决办法]
bcb中设置断点也可以看到