Hi,
i am using visual studio 2013. when i am try to select combobox values i am getting this error (Accessviolatio nexception was unhandled:
(Attempted to read or write protected memory. This is often an indication that other memory is corrupt.)
i am using visual studio 2013. when i am try to select combobox values i am getting this error (Accessviolatio nexception was unhandled:
(Attempted to read or write protected memory. This is often an indication that other memory is corrupt.)
Code:
using System; using System.Collections.Generic; using System.Linq; using System.Windows.Forms; using System.Data.SqlServerCe; using System.Threading; namespace Rpos { static class Program { /// <summary> /// The main entry point for the application. /// </summary> [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new LoginPage()); // i am getting exception in this place (AccessViolationException was unhandled ) } } }
Comment