Hi
I have below code but i am getting above error on CreateConnection();
static class Program { public static SAPbouiCOM.Application oApplication = null; public static SAPbobsCOM.Company oCompany = null; [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