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

Recent content by bbresc512

  1. bbresc512

    TControl property?

    the actual component code is this: unit MyPanel; interface uses SysUtils, Classes, Controls, ExtCtrls; type TMyPanel = class(TPanel) private { Private declarations } FControl : TControl; FFieldName : string; FFieldDesc : string; published { Published...
  2. bbresc512

    TControl property?

    Hi all I've built a component where one of it's published properties is of type TControl. I'm able to select the value in the Object Inspector (it even displays the list of available TControl components that are currently on the form). The problem occurs when I remove the control - the Object...
  3. bbresc512

    Display DDL form in the main exe project

    sorry, I didn't explain my problem properly I tried the pagecontrol too. I can't get the DLL form displayed in the main application at all, in anything. I tried exporting a DLL function that returns the created form to the main application and then assigning the Parent property of the returned...
  4. bbresc512

    Display DDL form in the main exe project

    Hi all here is what I'm trying to do: I have a main exe project that dynamically loads different dll's, which contain different forms. The main project has a form and a panel. I'm trying to create a form in DLL and display it in the panel in the main exe project. I saw someone saying that he had...

Part and Inventory Search

Back
Top