DevExpress [all products]-SSG

whoknows

Member
Joined
month_9_short 8, 2008
Messages
6
Reaction score
20
Age
47
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

Member
Joined
month_9_short 8, 2008
Messages
6
Reaction score
20
Age
47
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

VIP
Joined
month_2_short 26, 2006
Messages
132
Reaction score
182
В полной сборке 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

Member
Joined
month_1_short 30, 2012
Messages
5
Reaction score
0
Компонент для WPF Banded Grid View достаточно ресурсоемкий, пришлось внедрять через WindowFormsHost винформовскую версию, тоже от девикпресс
 

vovag3074

Member
Joined
month_1_short 15, 2010
Messages
44
Reaction score
74
Age
50
Нашел интересный модуль: 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