Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Delphi help ....

Status
Not open for further replies.

22255565

Programmer
Jun 13, 2003
4
PT
I i have a short big problem, when we are programming in delphi and we write the name of and object and press the key "." it should appear a menu with all the issues associated to the object, but now when I do nothing appears ????????

Any ideas How to solve the problem...

Thnaks
 
There are normally two reasons for this:
a) your program is still being executed in the background
Solution: With your source code page selected, press <CTRL-F2>, this will reset your program and should allow you to see the property/method list your require.

b) you have errors in your source code
Solution: With your source code selected, press <CTRL-F9> to compile your source code - then look at the message window to see what the errors are.

Hope this helps!

Clive [infinity]
Ex nihilo, nihil fit (Out of nothing, nothing comes)
 
other possible reasons are (unless fixed in new versions of Delphi)
The root object is in a bracketed structure.

e.g
trim(edit1.) 'text' might not popup here!

the root of the object is in a 'with do' structure
e.g

with button1 do
begin
font. // no font properties will pop up
end;

Steve.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top