Sat

Sat

  • 1.6k
  • 70
  • 26.4k

Combobox Error in c#

Dec 20 2014 7:26 AM
Hi,

i am using visual studio 2013. when i am try to select combobox values i am this error (Accessviolationexception was unhandled:
(Attempted to read or write protected memory. This is often an indication that other memory is corrupt.)

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 )

        }

    }
}
   


pls help me anyone as soon as possible..........thanks in advance



Attachment: error.rar

Answers (8)