DevExpress [all products]-SSG

whoknows

Турист
DevExpress.ExpressDBTree.Suite.v1.39.for.Delphi.BCB.Full.Source-SSG
DevExpress.ExpressDocking.Library.v5.39.for.Delphi.BCB.Full.Source-SSG
DevExpress.ExpressFlowChart.Suite.v1.39.for.Delphi.BCB.Full.Source-SSG
DevExpress.ExpressLayout.Control.v1.39.for.Delphi.BCB.Full.Source-SSG
DevExpress.ExpressMasterView.v1.39.for.Delphi.BCB.Full.Source-SSG
DevExpress.ExpressMemData.v1.39.for.Delphi.BCB.Full.Source-SSG
DevExpress.ExpressNavBar.Suite.v2.39.for.Delphi.BCB.Full.Source-SSG
DevExpress.ExpressOrgChart.Suite.v1.39.for.Delphi.BCB.Full.Source-SSG
DevExpress.ExpressPageControl.v2.39.for.Delphi.BCB.Full.Source-SSG
DevExpress.ExpressPivotGrid.Suite.v2.39.for.Delphi.BCB.Full.Source-SSG
DevExpress.ExpressPrinting.System.v3.39.for.Delphi.BCB.Full.Source-SSG
DevExpress.ExpressQuantumGrid.Suite.v6.39.for.Delphi.BCB.Full.Source-SSG
DevExpress.ExpressQuantumTreeList.v4.39.for.Delphi.BCB.Full.Source-SSG
DevExpress.ExpressScheduler.Suite.v3.39.for.Delphi.BCB.Full.Source-SSG
DevExpress.ExpressSideBar.v5.39.for.Delphi.BCB.Full.Source-SSG
DevExpress.ExpressSpellChecker.v1.39.for.Delphi.BCB.Full.Source-SSG
DevExpress.ExpressSpreadSheet.v1.39.for.Delphi.BCB.Full.Source-SSG
DevExpress.ExpressVerticalGrid.Suite.v3.39.for.Delphi.BCB.Full.Source-SSG
DevExpress.ExpressWeb.Framework.v1.39.for.Delphi.Full.Source-SSG
dn @:
Code:
http://rapidshare.com/files/152099171/DevExpress_1008.rar

or

http://depositfiles.com/files/8588377
 

whoknows

Турист
Berg.Component Suite v4.9.08.1-SSG

GridView
DBGridView
PropertiesView
SheetView
Comp. Collection
Wiki Skin Components
Fine Menus

home @:
Code:
http://www.bergsoftware.net/
dn @:
Code:
http://rapidshare.com/files/152329775/Berg.Component.Suite.v4.9.08.1.for.Delphi.BCB.Full.Source-SSG.rar

or

http://depositfiles.com/files/8604041
 

ONIM

ex-Team DUMPz
В полной сборке 39 баров (ribbon) не было, они шли отдельным файлом. Если нужны бары,но без скинов, вполне подойдет 38 сборка. Так что ищи ее.

Рекомендую Vanix.Net. У них есть Компоненты для дельфи [ выпуск №432 ]:

DevExpress.ExpressBars.Suite.v6.38.for.Delphi.BCB.Full.Source-SSG
DevExpress.ExpressDBTree.Suite.v1.38.for.Delphi.BCB.Full.Source-SSG
DevExpress.ExpressDocking.Library.v5.38.for.Delphi.BCB.Full.Source-SSG
DevExpress.ExpressFlowChart.Suite.v1.38.for.Delphi.BCB.Full.Source-SSG
DevExpress.ExpressLayout.Control.v1.38.for.Delphi.BCB.Full.Source-SSG
DevExpress.ExpressMasterView.v1.38.for.Delphi.BCB.Full.Source-SSG
DevExpress.ExpressMemData.v1.38.for.Delphi.BCB.Full.Source-SSG
DevExpress.ExpressNavBar.Suite.v2.38.for.Delphi.BCB.Full.Source-SSG
DevExpress.ExpressOrgChart.Suite.v1.38.for.Delphi.BCB.Full.Source-SSG
DevExpress.ExpressPageControl.v2.38.for.Delphi.BCB.Full.Source-SSG
DevExpress.ExpressPivotGrid.Suite.v1.38.for.Delphi.BCB.Full.Source-SSG
DevExpress.ExpressPrinting.System.v3.38.for.Delphi.BCB.Full.Source-SSG
DevExpress.ExpressQuantumGrid.Suite.v6.38.for.Delphi.BCB.Full.Source-SSG
DevExpress.ExpressQuantumTreeList.v4.38.for.Delphi.BCB.Full.Source-SSG
DevExpress.ExpressScheduler.Suite.v3.38.for.Delphi.BCB.Full.Source-SSG
DevExpress.ExpressSideBar.v5.38.for.Delphi.BCB.Full.Source-SSG
DevExpress.ExpressSpellChecker.v1.38.for.Delphi.BCB.Full.Source-SSG
DevExpress.ExpressSpreadSheet.v1.38.for.Delphi.BCB.Full.Source-SSG
DevExpress.ExpressVerticalGrid.Suite.v3.38.for.Delphi.BCB.Full.Source-SSG
DevExpress.ExpressWeb.Framework.v1.38.for.Delphi.Full.Source-SSG
 

andri77

Турист
Компонент для WPF Banded Grid View достаточно ресурсоемкий, пришлось внедрять через WindowFormsHost винформовскую версию, тоже от девикпресс
 

dnekrasov

Турист
Last edited by a moderator:

vovag3074

Турист
Нашел интересный модуль: dxShadowWindow.
Использую вместе с cxGeometry;
Пример: (TfmFullImp имя моей формы)

procedure TfmFullImp.FormClose(Sender: TObject; var Action: TCloseAction);
begin
FreeAndNil(MyShadow); // При закрытии удалять тень обязательно!
end;

procedure TfmFullImp.FormCreate(Sender: TObject);
begin
MyShadow := TdxShadowWindow.Create(Self); // Создали
MyShadow.ShadowOffsets := cxRect(20, 20, 20, 20); // увеличили размер тени
MyShadow.Show; // Показали
end;
 
Top