Example #1
0
        public DDETickerRouter()
        {
            client           = new DDEClient();
            this.initialized = new RtdServerTicker(client.InitializationMessage);

            tracker = new DDETracker(client);
        }
        public DDETickerRouter()
        {
            client = new DDEClient();
            this.initialized = new RtdServerTicker(client.InitializationMessage);

            tracker = new DDETracker(client);
        }
Example #3
0
        public DDETracker(DDEClient client)
        {
            this.client = client;

            this.connectThread = new Thread(ConnectThreadMain);
            this.connectThread.Start();
        }
Example #4
0
        public DDETracker(DDEClient client)
        {
            this.client = client;

            this.connectThread = new Thread(ConnectThreadMain);
            this.connectThread.Start();
        }
Example #5
0
            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;
            }
Example #6
0
            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;
            }