Manually install the devexpress control packageSource codeThis is really unbearable. I wrote a batch to quickly generate BPL, DCP, and DCU.
First, set the source of the expressschedulerCodeDecompress the package to a directory.
Save the following code as build. BAT (it cannot be changed to another file name), run it, wait, and all the compiled files are in Lib.
@ Echo Off
If Not Exist Lib MD Lib
Set Lib = .\ Lib
If Not % 1 N = N Goto Copy
Call Build " Expressgdi + Library "
Call Build " XP theme Manager "
Call Build " Expressdatacontroller "
Call Build " Expresseditors library 5 "
Call Build " Expressexport Library "
Call Build " Expresslibrary "
Call Build " Expresssched1_2 "
CD % Lib %
Set Param = - $ D-B
Dcc32 dxgdiplusd7 . Dpk % Param %
Dcc32 dxthemed7 . Dpk % Param %
Dcc32 cxdatad7 . Dpk % Param %
Dcc32 cxadoadaptersd7 . Dpk % Param %
Dcc32 cxbdeadaptersd7 . Dpk % Param %
Dcc32 cxibxadaptersd7 . Dpk % Param %
Dcc32 cxeditorsvcld7 . Dpk % Param %
Dcc32 cxexteditorsvcld7 . Dpk % Param %
Dcc32 dclcxeditorsvcld7 . Dpk % Param %
Dcc32 dclcxexteditorsvcld7 . Dpk % Param %
Dcc32 cxexportvcld7 . Dpk % Param %
Dcc32 cxlibraryvcld7 . Dpk % Param %
Dcc32 dclcxlibraryvcld7 . Dpk % Param %
Dcc32 dclcxschedulervcld7 . Dpk % Param %
Dcc32 cxschedulervcld7 . Dpk % Param %
Del * . PAS
Del * . Dpk
:: Del *. Res
:: Del *. DFM
Del * . BPK
Del * . BMP
Del * . DCR
Del * . CPP
Del * . INC
Pause
Goto Exit
: Copy
If Not Exist % 1 Goto Exit
CD % 1
If Exist Packages Copy " Packages \*.* " . % Lib % / Y > Nul
If Exist Sources Copy " Sources \*.* " . % Lib % / Y > Nul
CD ..
: Exit
For other control packages of devexpress, you only need to make some modifications on the above to apply.