Hi
IN windows form application i want to use Global variables. Where i should declare them
public static SAPbouiCOM.Application oApplication = null; public static SAPbobsCOM.Company oCompany = null;
namespace Employee { static class Program { public static SAPbouiCOM.Application oApplication = null; public static SAPbobsCOM.Company oCompany = null; /// <summary> /// The main entry point for the application. /// </summary> [STAThread] static void Main(string[] args) { try { CreateConnection(); Menu oMenuItems = null; oMenuItems = new Menu(); // Start Message Loop System.Windows.Forms.Application.Run(); } catch (Exception ex) { System.Windows.Forms.MessageBox.Show(ex.Message); } } } }
Thanks