Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3230306
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T16:54:41+00:00 2026-05-17T16:54:41+00:00

As a proof of concept, I want to write Done in a text box

  • 0

As a proof of concept, I want to write “Done” in a text box after a check box has been checked and a key has been pressed in a text box (in either order). I would expect this code to handle this, but it writes Done as soon as either event happens. Thanks for your help.

var seq = Observable.FromEvent<EventArgs>(this.checkBox, "CheckedChanged")
   .Merge(Observable.FromEvent<KeyPressEventArgs>(this.textBox, "KeyPress"));

seq.Subscribe((unused) => this.resultTextBox.Text = "Done");
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T16:54:41+00:00Added an answer on May 17, 2026 at 4:54 pm

    You can use Observable.When like so (I’ve added an additional CheckBox for this example):

    var checkChanged  = Observable.FromEvent<EventArgs>(this.checkBox, "CheckedChanged");
    var check1Changed = Observable.FromEvent<EventArgs>(this.checkBox1, "CheckedChanged");
    var keyPress      = Observable.FromEvent<KeyPressEventArgs>(this.textBox, "KeyPress");
    
    var plan1 = checkChanged
                .And(check1Changed).And(keyPress)
                .Then((cc, cc1, kp) => "Done.");
    
    var when = Observable.When(plan1);
    
    when.Subscribe((result) => this.resultTextBox.Text = result);
    

    Also, if you can join other plans together, for example if things can be “done” when either one set of events fire, or also when another set of events fire:

    var checkChanged  = Observable.FromEvent<EventArgs>(this.checkBox, "CheckedChanged");
    var check1Changed = Observable.FromEvent<EventArgs>(this.checkBox1, "CheckedChanged");
    var keyPress      = Observable.FromEvent<KeyPressEventArgs>(this.textBox, "KeyPress");
    var keyPress1     = Observable.FromEvent<KeyPressEventArgs>(this.textBox1, "KeyPress");
    
    var plan1 = checkChanged.And(check1Changed).And(keyPress).Then((cc, cc1, kp) => "Done.");
    var plan2 = keyPress.And(keyPress1).Then((kp, kp1) => "Alternate done.");
    
    var join = Observable.When(plan1, plan2);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to achieve a proof of concept where I write a module
I created a minuscule WCF service as a proof of concept. I eventually want
I want to learn a bit of Silverlight by writing a simple proof-of-concept RIA.
I'm trying to do a proof of concept with MATLAB objects. I want to
Background: I've been working on a small proof-of-concept web application in ASP.NET 4.0 with
As a proof of concept, I want to create an application that retrieve the
I'm trying to make a proof of concept website, but I want perfect degradation.
I have been working on a proof of concept using WCF and MSMQ. I
I'm new to multi-threading and I have been doing a Proof-of-Concept, I've also 'discovered'
Hi i have my proof of concept project where i want to have data

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.