Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7367877
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T03:35:33+00:00 2026-05-29T03:35:33+00:00

Using the JEDI VCL library with Delphi, I put a JvDockServer on the main

  • 0

Using the JEDI VCL library with Delphi, I put a JvDockServer on the main form,
and on another that should be docked to the main form, I have JvDockClient using dock style JvDockVIDVCStyle.

While Docking works great, I would like to be notified when a client form changes from docked to undocked (floating) mode.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T03:35:34+00:00Added an answer on May 29, 2026 at 3:35 am

    Update The JVCL is now modified to contain this feature built in! The TForm’s built in events is now fired when you dock a form. Check out the DockingInCode demo in the JEDI JVCL, which now (as of March 27 2012) contains samples of Docking and Undocking events firing. TForm.OnEndDock is now fired when docking, as is TForm.OnUnDock on undocking. Sorry about the names, those area already in TForm and I didn’t choose them!

    OLD ANSWER for historical reasons:

    You would like a notification when a form has been made to float. TForm already has OnUnDock and OnEndDock, but these are (sadly) not fired when you dock and undock using the Jedi VCL Dock Manager.

    The best method I can think of to do this is to modify the JVCL.

    Modify JvDockSupportControl.pas, method TJvDockCustomControl.WndProc:

    procedure TJvDockCustomControl.WndProc(var Msg: TMessage);
    var
      CMUnDockClient: TCMUnDockClient;
      DockableForm: TJvDockableForm;
      allow:Boolean;
    begin
      if Msg.Msg = CM_UNDOCKCLIENT then
      begin
        CMUnDockClient := TCMUnDockClient(Msg);
        // new code starts here
        if CMUnDockClient.Client is TForm then begin
          allow := true;
          if Assigned(TForm(CMUnDockClient.Client).OnUnDock) then
            TForm(CMUnDockClient.Client).OnUnDock(Self,CMUnDockClient.Client,TWinControl(nil),allow);
    //      if not allow then
    //        exit; // currently JvDocking has already deleted you from the dock tree, so we can't honor this.
        end;
        // new code ends here
       if CMUnDockClient.Client is TJvDockableForm then
       begin
        ...
    

    Unfortunately this is an oversight in the design of the components, and if you log it in the Jedi Bug Tracker, and post the link to it here. JvDocking internals are complex, sadly, but the above hack might get you going as of today.

    Alternative to editing JVCL is to make your own Style, based on the Dock Style that you prefer to use, and add OnDock and OnFloat events to it. For example, if you are using the VID (Visual Interdev) dock style, copy JvDockVIDStyle.pas to your own unit, and rename it to something else.

    Find this procedure in the code:

        procedure TJvDockVIDTree.WindowProc(var Msg: TMessage);
    

    leave the existing code in that function and add the following at the bottom:

    if (Msg.msg =CM_UNDOCKCLIENT)and Assigned(FOnUndock) then
        FOnUndock( TObject(Msg.Client))
    

    I think that I should write a better version of the above and put it into the JVCL JvDocking, since it’s an intuitive thing. In addition OnEndDock should probably be made to function. OnStartDock is incompatible with JvDocking, so I can’t add that.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Using Delphi XE on Win7 x64, have Jedi Class Library ver. 3.45, and 7z.dll
Using TortoiseSVN against VisualSVN I delete a source file that I should not have
Using CRM 4, I have an entity form that contains a tab with an
I'm using Delphi Pro 6 on Windows XP with FastMM 4.92 and the JEDI
Using ASP.NET MVC there are situations (such as form submission) that may require a
Using MVC2 I have an AJAX form which is posting to a bound model.
I am using Delphi 2010, latest version (from repository) of JEDI WinAPI and Windows
Using report builder 3.0, I have a report that queries a cube. How do
I'm in a little bitty startup company. Right now we are using JEDI VCS
Using online interfaces to a version control system is a nice way to have

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.