Current filter:
                                You should refresh the page.

                                World Wide CRM Demo

                                -4

                                The World Wide CRM demo is a next generation application with outstanding navigation capabilities and shows a reimagined view of customer contact and management. This demo showcases many of the most popular features of the WinForms Subscription.

                                Note: To get the entire project with full source code, please install our 'Example Runner' tool and click 'Example'.

                                • 05.23.2012

                                  not able to download source for World Wide CRM

                                • Guido Volkmann 05.24.2012

                                  can't download source too.... :-(

                                • Odilio Balbinotti 06.12.2012

                                  DevExpress.CrmDemo.Win all folders in are empty.
                                  SampleDocuments are corrupted (pptx) or empty (docx) all of them.

                                • jaco joubert 06.22.2012

                                  Where can I get the complete source code for this app?

                                • Hedi Guizani 07.10.2012

                                  I hope that this is a joke

                                • Jose Valmir Trajano Junior 09.28.2012

                                  World Wid CRM DEMO, Dont show VB.net code !
                                  KD ?

                                • Fmonteiro 10.10.2012

                                  Bad start!!!! No VB.net example why???

                                • Jose Valmir Trajano Junior 11.05.2012

                                  Hi,
                                  I Dont Found download source for World Wide CRM,
                                  Please send for me Project of World Wide CRM DEMO
                                  in Visual Studio 2010 C# .Net or
                                  Visual Studio 2010 Vb.Net,
                                  Tnks
                                  J.Valmir Trajano Junior.

                                • AK BAR 11.11.2012

                                  could you give me source code simply using vb.net? I still convuse.

                                You must  log in  or  register  to leave comments
                                Select file
                                • Program.cs
                                • Activity.cs
                                • ActivityEditorForm.cs
                                • BasePage.cs
                                • ButtonEditWithAutoSelect.cs
                                • CategoryStat.cs
                                • ColorHelper.cs
                                • CompanyStat.cs
                                • CustomAppointment.cs
                                • CustomCursorWrapper.cs
                                • Dashboard.cs
                                • DataBindingHelpers.cs
                                • DataGenerator.cs
                                • DataProvider.cs
                                • DateTimeExtensions.cs
                                • EnumExtensions.cs
                                • FileHelpers.cs
                                • FormsExtensions.cs
                                • GeneralStats.cs
                                • Header.cs
                                • KeywordStat.cs
                                • MainForm.cs
                                • MemoEditWithAutoSelect.cs
                                • MonthSlider.cs
                                • OppDetail.cs
                                • OpportunitiesByStage.cs
                                • OpportunitiesEditorForm.cs
                                • Opportunity.cs
                                • OpportunityColumn.cs
                                • OpportunityReport.cs
                                • ReportPage.cs
                                • ReportViewer.cs
                                • SchedulerPage.cs
                                • Start.cs
                                • TeamMember.cs
                                • TeamMemberControl.cs
                                • TeamMemberStat.cs
                                • TeamMemberStatDetail.cs
                                • TextEditWithAutoSelect.cs
                                • TextTest.cs
                                • UnderConstruction.cs
                                Select language
                                • C#
                                • VB.NET
                                Select version
                                • v2012 vol 2.4 - v2012 vol 2.8
                                • v2011 vol 2.11 - v2012 vol 1.10
                                using System;
                                using System.Collections.Generic;
                                using System.Linq;
                                using System.Windows.Forms;
                                using DevExpress.Skins.Info;
                                using DevExpress.Skins;
                                
                                namespace DevExpress.CrmDemo.Win
                                {
                                    static class Program
                                    {
                                        /// <summary>
                                        /// The main entry point for the application.
                                        /// </summary>
                                        [STAThread]
                                        static void Main()
                                        {
                                            SkinBlobXmlCreator skinCreator = new SkinBlobXmlCreator("MetroDark", "DevExpress.CrmDemo.Win.SkinData.", typeof(Program).Assembly, null);
                                
                                            SkinManager.Default.RegisterSkin(skinCreator);
                                            LookAndFeel.UserLookAndFeel.Default.SetSkinStyle("MetroDark");
                                
                                            DevExpress.Skins.SkinManager.EnableFormSkins();
                                            DevExpress.CrmDemo.Win.Data.DataGenerator.CreateSampleDocuments();
                                
                                            Application.EnableVisualStyles();
                                            Application.SetCompatibleTextRenderingDefault(false);
                                            Application.Run(new MainForm());
                                        }
                                    }
                                }