using System.Collections.Generic;
using System.Windows.Forms;
namespace LandTransfer
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
public static int code = 0;
//C:/LandTransfer/Database/
public static string database = "//192.168.1.24/LandTransfer/Database/LTMS.mdb";
public static string source = "Provider = Microsoft.Jet.OLEDB.4.0;Data Source=" + database + "";
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Parent());
}
}
}
I am trying to export data to onother compuer database having in network, error "the programme is being used by onother user exclusivly or you have no permission" The programme is same but i want that two person on different computer can work at the same time, and the data should be stored in one computer. I am giving my programme coding ---------