Delphi和VB 中怎么搞goto definition

来源:百度知道 编辑:UC知道 时间:2024/05/31 07:00:30
VC++中一个goto definition
就能知道 LPTSTR 是啥。
Delphi和VB 有类似的功能吗??

delphi7 的 按住Ctrl 点对象、过程、函数,可转到定义

当然有,不过不推荐这么用.Delphi可以这样:
procedure xxxxx;
lable a;
begin
a:
xxxxx...
xxxxx
goto a;
end;