From 0b82d995585fad9831e7c02a81a248dee97cee79 Mon Sep 17 00:00:00 2001 From: fcolin Date: Fri, 9 Nov 2007 08:55:00 +0000 Subject: --- IvyProbe/IvyProbe.Designer.cs | 9 ++++----- IvyProbe/IvyProbe.cs | 8 ++++---- IvyProbe/IvyProbe.csproj | 4 ++++ 3 files changed, 12 insertions(+), 9 deletions(-) (limited to 'IvyProbe') diff --git a/IvyProbe/IvyProbe.Designer.cs b/IvyProbe/IvyProbe.Designer.cs index 13f440c..e0109e3 100644 --- a/IvyProbe/IvyProbe.Designer.cs +++ b/IvyProbe/IvyProbe.Designer.cs @@ -39,8 +39,8 @@ namespace IvyProbe this.btUnbind = new System.Windows.Forms.Button(); this.btBindSimple = new System.Windows.Forms.Button(); this.busDomain = new IvyBus.IvyDomain(); - this.bus = new IvyBus.Ivy(this.components); - this.ivyApplicationBinding1 = new IvyBus.IvyApplicationBinding(this.components); + this.bus = new IvyBus.IvyControl(this.components); + this.ivyApplicationBinding1 = new IvyBus.IvyApplicationBindingControl(this.components); ((System.ComponentModel.ISupportInitialize)(this.bus)).BeginInit(); this.SuspendLayout(); // @@ -146,7 +146,6 @@ namespace IvyProbe // bus // this.bus.AppName = "IvyProbeC#"; - this.bus.AppPriority = ((ushort)(100)); this.bus.Bindings.Add(this.ivyApplicationBinding1); this.bus.Culture = new System.Globalization.CultureInfo("en-US"); this.bus.ReadyMessage = "IvyProbeC# ready"; @@ -203,8 +202,8 @@ namespace IvyProbe private System.Windows.Forms.Button btBindSimple; private System.Windows.Forms.Button btUnbind; private IvyBus.IvyDomain busDomain; - private IvyBus.Ivy bus; - private IvyBus.IvyApplicationBinding ivyApplicationBinding1; + private IvyBus.IvyControl bus; + private IvyBus.IvyApplicationBindingControl ivyApplicationBinding1; } } diff --git a/IvyProbe/IvyProbe.cs b/IvyProbe/IvyProbe.cs index 31c024a..d6ef049 100644 --- a/IvyProbe/IvyProbe.cs +++ b/IvyProbe/IvyProbe.cs @@ -141,18 +141,18 @@ namespace IvyProbe private void busDomain_DomainChanged(object sender, EventArgs e) { - bus.Stop(); - bus.Start(busDomain.Domain); + bus.ivy.Stop(); + bus.ivy.Start(busDomain.Domain); } private void IvyProbe_FormClosed(object sender, FormClosedEventArgs e) { - bus.Stop(); + bus.ivy.Stop(); } private void IvyProbe_Load(object sender, EventArgs e) { - bus.Start(busDomain.Domain); + bus.ivy.Start(busDomain.Domain); } private void ivyprobe(object sender, IvyMessageEventArgs e) diff --git a/IvyProbe/IvyProbe.csproj b/IvyProbe/IvyProbe.csproj index 39a800b..8be9885 100644 --- a/IvyProbe/IvyProbe.csproj +++ b/IvyProbe/IvyProbe.csproj @@ -149,6 +149,10 @@ + + {9E7098F5-F4CA-4CAE-B517-C584691DBDB4} + IvyControl + {F2F03CF7-0087-4EDB-AD15-80C9E8DA2617} Ivy -- cgit v1.1