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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. hajimeml

    How to add target in Project Option?

    Hello, I am using Borland C++ 6.0. I am trying to modify a complex program written by somebody else. Comparing two different versions of the same program, I found that under project->option, an automatic creation target is missing. How can I add one more item in this list? Thanks.
  2. hajimeml

    Is there a way to get a list of callers to a particular class?

    Thanks for the sample but this is not exactly what I want. I am trying to understand and modify a very complex program written by others. There are many files, classes, member functions within each classes. I have found the member function of interest. Now, I want to know which other functions...
  3. hajimeml

    Is there a way to get a list of callers to a particular class?

    Actually I want to find out all the callers of a particular member function of a class. Sorry for the confusion.
  4. hajimeml

    Is there a way to get a list of callers to a particular class?

    Hello. In a complex Borland Builder C++ project with hundreds of classes, is there a way to find out the callers to a particular class? Thanks.
  5. hajimeml

    Good source to know more about TListBox, TIntEdit, TDoubleEdit, etc

    I also wish to find out what TGroupBox's Visible, TDoubleEdit's Value for. Thanks.
  6. hajimeml

    Good source to know more about TListBox, TIntEdit, TDoubleEdit, etc

    Hello. Could you please let me know where I can get more information about TListBox, TIntEdit, TDoubleEdit, etc? I encountered a code fragment like: TListBox *lbMP; lbMP->Clear() I suppose there is a member function Clear() within TListBox. However, cannot find any information on what it...
  7. hajimeml

    Questions related to _property and form

    Thanks for clearing things up.
  8. hajimeml

    Questions related to _property and form

    I am very sorry for my lack of knowledge. Is editFBG1 supposed to be in a form? I found editFBG1 in the .h file. It is defined as: TDoubleEdit *editFBG1; Then, under Builder, I chose switch between unit and form. Several form reading error messages appeared and I chose to ignore in each case...
  9. hajimeml

    Questions related to _property and form

    Sorry. When you say "this component", what do you mean?
  10. hajimeml

    Questions related to _property and form

    I am using Borland Builder C++ Professional version 6. As for your other questions, I have no idea. I am very sorry. I am just trying to understand and modify the program written by others. Is there a way to find out the answers to your questions?
  11. hajimeml

    Questions related to _property and form

    Thanks, James. I had a quick look on the object inspector. There is no Text property in it.
  12. hajimeml

    Questions related to _property and form

    Thank you Prattaratt and 2ffat for the nice explainations. >The properties of each VCL component is different and can >be inherited or derived from other VCL components. For >example, if you look at TEdit in the help file, you will >notice that there are links to properties, methods, and...
  13. hajimeml

    Questions related to _property and form

    Thank you for all of your help. >When it's written to, it will do so by calling a method >named SetValue which takes one parameter of type double. >In this particular case the method is a private one, which >is the standard way of declaring a "Setter." SetValue looks like a variable than a...
  14. hajimeml

    Questions related to _property and form

    Hello. I found the following statement from the program I try to understand. Could you please let me know what it is supposed to do? editFBG1->Value = CTG->GetFBG1() where - editFBG1 is a pointer to TDoubleEdit. - It is also a _published member of TFormCT - CTG->GetFBG1() returns a value of...
  15. hajimeml

    about forms

    Hello. Could you please let me knows what the following two code statements mean? Is PACKAGE somekind of special file in Borland C++ Builder? Thanks. extern PACKAGE TFCT *FCT; FCT->ShowModal(); Are there any good books on Form of BC++ 6?
  16. hajimeml

    Is member of an inherited class of TForm global?

    Thank you very much for the very useful information.
  17. hajimeml

    Is member of an inherited class of TForm global?

    Hello, I have a C++ Builder 6 program written by others. When the program is executed, there is a main form. Depending on the buttons being pushed, different forms appear on the screen to prompt the users for appropriate actions. In Main.h, there is a class definition as follows: class...
  18. hajimeml

    How to display how the classes are related to each other graphically?

    Hello. I am a new user of Borland C++ Builder 6. I have been using C for a few years but I just started learning C++. I was given a complex c++ program written by former lab members. My task is to understand the program and modify it to suite my needs. I have all the source codes (.cpp and .h...

Part and Inventory Search

Back
Top