summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfcolin2007-02-01 10:05:29 +0000
committerfcolin2007-02-01 10:05:29 +0000
commita27efe3cb3a9a3e0a28788d29c476cd2ecb584fb (patch)
tree5bc0bed2c2cb1e151b6a3618e1680556801627fb
parentd8a7b0e231b698d3a24e2af4b6620f1083447247 (diff)
downloadivy-csharp-a27efe3cb3a9a3e0a28788d29c476cd2ecb584fb.zip
ivy-csharp-a27efe3cb3a9a3e0a28788d29c476cd2ecb584fb.tar.gz
ivy-csharp-a27efe3cb3a9a3e0a28788d29c476cd2ecb584fb.tar.bz2
ivy-csharp-a27efe3cb3a9a3e0a28788d29c476cd2ecb584fb.tar.xz
Utilisateur : Fcolin Date : 23/01/06 Heure : 18:09 Archivé dans $/CSharp/Ivy/IvyProbe Commentaire: (vss 5)
-rw-r--r--CSharp/Ivy/IvyProbe/IvyProbe.Designer.cs40
1 files changed, 25 insertions, 15 deletions
diff --git a/CSharp/Ivy/IvyProbe/IvyProbe.Designer.cs b/CSharp/Ivy/IvyProbe/IvyProbe.Designer.cs
index ca061ba..d14b300 100644
--- a/CSharp/Ivy/IvyProbe/IvyProbe.Designer.cs
+++ b/CSharp/Ivy/IvyProbe/IvyProbe.Designer.cs
@@ -37,7 +37,8 @@ namespace IvyProbe
this.btSend = new System.Windows.Forms.Button();
this.btUnbind = new System.Windows.Forms.Button();
this.btBindSimple = new System.Windows.Forms.Button();
- this.bus = new IvyBus.IvyDomain();
+ this.busDomain = new IvyBus.IvyDomain();
+ this.bus = new IvyBus.Ivy();
this.SuspendLayout();
//
// label1
@@ -129,29 +130,37 @@ namespace IvyProbe
this.btBindSimple.Text = "bind simple";
this.btBindSimple.Click += new System.EventHandler(this.ExpressionCB);
//
+ // busDomain
+ //
+ this.busDomain.Bus = this.bus;
+ this.busDomain.Domain = "10.192.36.255:2011";
+ this.busDomain.Location = new System.Drawing.Point(0, 0);
+ this.busDomain.Margin = new System.Windows.Forms.Padding(0);
+ this.busDomain.Name = "busDomain";
+ this.busDomain.Size = new System.Drawing.Size(321, 33);
+ this.busDomain.TabIndex = 0;
+ //
// bus
//
- this.bus.AppName = "IvyProbe_C#";
- this.bus.AppReadyMessage = "IvyProbe_C# ready";
- this.bus.AutoScroll = true;
- this.bus.Domain = global::IvyProbe.Properties.Settings.Default.IvyBus;
- this.bus.Location = new System.Drawing.Point(11, 5);
- this.bus.Margin = new System.Windows.Forms.Padding(0);
- this.bus.Name = "bus";
- this.bus.Size = new System.Drawing.Size(322, 36);
- this.bus.TabIndex = 9;
- this.bus.DirectMessageReceived += new IvyBus.Ivy.DirectMessageHandler(this.directMessage);
+ this.bus.AppName = "IvyProbeC#";
+ this.bus.AppPriority = ((ushort)(100));
+ this.bus.Culture = new System.Globalization.CultureInfo("en-US");
+ this.bus.Debug = false;
+ this.bus.ReadyMessage = "IvyProbeC# ready";
+ this.bus.SentMessageClasses = null;
+ this.bus.SyncControl = this;
+ this.bus.dieReceived += new IvyBus.Ivy.DieHandler(this.die);
this.bus.BindingAdd += new IvyBus.Ivy.ClientAddBindingHandler(this.bus_addBinding);
- this.bus.DieReceived += new IvyBus.Ivy.DieHandler(this.die);
this.bus.ClientDisconnected += new IvyBus.Ivy.ClientDisconnectedHandler(this.disconnect);
- this.bus.BindingRemove += new IvyBus.Ivy.ClientRemoveBindingHandler(this.bus_removeBinding);
this.bus.ClientConnected += new IvyBus.Ivy.ClientConnectedHandler(this.connect);
+ this.bus.DirectMessageReceived += new IvyBus.Ivy.DirectMessageHandler(this.directMessage);
+ this.bus.BindingRemove += new IvyBus.Ivy.ClientRemoveBindingHandler(this.bus_removeBinding);
//
// IvyProbe
//
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.ClientSize = new System.Drawing.Size(478, 266);
- this.Controls.Add(this.bus);
+ this.Controls.Add(this.busDomain);
this.Controls.Add(this.btBindSimple);
this.Controls.Add(this.btUnbind);
this.Controls.Add(this.btSend);
@@ -179,7 +188,8 @@ namespace IvyProbe
private System.Windows.Forms.TextBox ta;
private System.Windows.Forms.Button btBindSimple;
private System.Windows.Forms.Button btUnbind;
- private IvyBus.IvyDomain bus;
+ private IvyBus.IvyDomain busDomain;
+ private IvyBus.Ivy bus;
}
}