Subject RE: [IBO] IBObject Survey Demo
Author Helen Borrie
At 11:17 AM 10/06/2005 +1000, you wrote:


>Hi Helen,
>
>Unfortunately I am not using Delphi, but Borland C++ Builder, I believe the
>problem is that the IDE needs to have this TfrmBase registered, so that if
>can display the form at design time, but, I do not know how to achieve this.

Sorrry, I don't, either, and I don't have Builder.



>FRM_Survey defines:
>
> TfrmSurvey = class(TForm)
>
>So it does not contain IBF_Base within the Uses Clause, however this form is
>visible at design-time

In fact, it *is* there. Look at the uses clause in the implementation section.


>FRM_Qestions defines:
>
> TfrmQuestions = class(TfrmBase)
>
>and it includes the IBF_Base with in the Uses Clause, however I am not able
>to view the form at design-time. This is also the case for the FRM_Language,
>and FRM_Surveys.
>
>The application compiles and runs perfectly in its current location. But as
>I mention I am not able to view all the forms at design time.

Oh, I see. I didn't realise that was your problem. In Delphi, all I have
to do to see an included ancestor form is:

1. Open the project
2. Press Ctrl-F12 to bring up the "View Unit" dialog
3. Select IBF_Base from the list (displays the source)
4. Press F11 (displays the form)

You're saying this doesn't work in Builder?

Helen