Home > Back-end >  Delphi xe7 how through the taskbar icon display and restore Windows
Delphi xe7 how through the taskbar icon display and restore Windows

Time:09-26

I am a beginner, Posting for the first time, to obtain a great god correct,
In using RAD Studio xe7 UP1 development environment, Delphi's own control to create the child window can be according to the program in the task bar icon in the small icon (not the lower right corner) show and hide the window, in the use of the third party controls to create a child of the form can't click the program icon on the taskbar (the bottom right hand corner small icon) to show or hide child form procedure, minimize window minimized in the lower left corner, at this time click the program icon on the taskbar (the bottom right hand corner small icon) also can't restore Windows, consult!

CodePudding user response:

What is the third party components

CodePudding user response:

reference 1st floor ksrsoft response:
what is the third party controls

BusinessSkinFormVcl, DXScene

CodePudding user response:

A pop-up menu with rc6 controls, a button a show a hide something as simple as that

CodePudding user response:

For the problem child form Settings window style:
WindowLong:=GetWindowLong (Handle, GWL_STYLE);
WindowLong:=windowLong or WS_SYSMENU or WS_MINIMIZEBOX or WS_MAXIMIZEBOX;
SetWindowLong (Handle, GWL_STYLE windowLong);
  • Related