/*========================================================================= * (c) Copyright 2002-2007, GemStone Systems, Inc. All Rights Reserved. * 1260 NW Waterhouse Ave., Suite 200, Beaverton, OR 97006 *========================================================================= */ using System; using System.Collections.Generic; using System.Windows.Forms; namespace ProductBrowser { static class Program { /// /// The main entry point for the application. /// [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new ProductBrowser()); } } }