public DDETickerRouter() { client = new DDEClient(); this.initialized = new RtdServerTicker(client.InitializationMessage); tracker = new DDETracker(client); }
public DDETracker(DDEClient client) { this.client = client; this.connectThread = new Thread(ConnectThreadMain); this.connectThread.Start(); }
public Conversation(DDEClient client, string service, string topic, IntPtr hConv, IDDEConversationListener listener) { this.timer = new DispatcherTimer(TimeSpan.FromSeconds(2), DispatcherPriority.Background, this.OnTimer, client.dispatcher); this.Client = client; this.Service = service; this.Topic = topic; this.Handle = hConv; this.listener = listener; }