首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > C++ Builder >

新手求教,怎么在程序中查看变量的值

2013-03-01 
新手求教,如何在程序中查看变量的值void __fastcall TDraw::EquipmentTypeClick(TObject *Sender){TImage

新手求教,如何在程序中查看变量的值
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中设置断点也可以看到

热点排行