Esempio n. 1
0
    public static void Main(String[] args)
    {
        DcopBrowser db = new DcopBrowser();
        // Note call GetDcopClient after creating the Form
        DcopClient client = GetDcopClient(args);
        DcopRef    dr     = null;

        if (client == null)
        {
            MessageBox.Show("Make sure that KDE is running");
            return;
        }
        db.BrowseDcop(client);
        Application.Run(db);
    }
	public static void Main(String[] args)
	{
		DcopBrowser db = new DcopBrowser();
		// Note call GetDcopClient after creating the Form
		DcopClient client = GetDcopClient(args);
		DcopRef dr = null ;
		if(client == null)
		{
			MessageBox.Show("Make sure that KDE is running");
			return;
		}
		db.BrowseDcop(client);
		Application.Run(db);
	}