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

  • Home
  • SEARCH
  • 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 206671
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T17:40:00+00:00 2026-05-11T17:40:00+00:00

I have the following simple function: private void EnableDisable941ScheduleBButton() { if (this._uosDepositorFrequency.Value != null)

  • 0

I have the following simple function:

    private void EnableDisable941ScheduleBButton()
    {
        if (this._uosDepositorFrequency.Value != null)
            this._btnScheduleB.Enabled = ((int)this._uosDepositorFrequency.Value == 0);
    }

It’s a member of a Winform class which I’m trying to split into a passive view and presenter. It’s obvious there is business logic tangled together with UI wiring. I’m just not sure of the best way to separate them.

To give a little context, the function is called from three locations in the form. _uosDepositorFrequency is a radiobutton group with only two buttons.

Any ideas?

Update:

Ok, maybe it isn’t as obvious as I thought. The business rule states that if an employer makes semiweekly deposits (_uosDepositorFrequency.Value = 0) they are required to fill out a Schedule B form.

  • 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-11T17:40:01+00:00Added an answer on May 11, 2026 at 5:40 pm

    First I’d like to thank all those who responded to my question.

    I spent some time working on this and I believe I’ve come up with a solution.

    First I exposed _uosDepositorFrequency.Value and _btnScheduleB.Enabled as public properties and update the view interface I also took a few moments to define an enum for the deposit frequencies.

        public bool EnableScheduleB
        {
            get
            {
                return _btnScheduleB.Enabled;
            }
            set
            {
                _btnScheduleB.Enabled = value;
            }
        }
    
        public DepositFrequency DepositorFrequency
        {
            get
            {
                return (DepositFrequency)_uosDepositorFrequency.Value;
            }
            set
            {
                _uosDepositorFrequency.Value = (int)value;
            }
        }
    

    Then I copied the body of the original function to my presenter and modified it to use the properties I just created. The null checking in the original function turned out to be unnecessary because the _uosDepositorFrequency control is initialized elsewhere.

        public void UpdateScheduleBStatus()
        {
            ReturnView.EnableScheduleB = ReturnView.DepositorFrequency == DepositFrequency.Semiweekly;
        }
    

    Finally the _uosDepositorFrequency_ValueChanged event handler was updated to call UpdateScheduleBStatus.

        private void _uosDepositorFrequency_ValueChanged(object sender, System.EventArgs e)
        {
            Presenter.UpdateScheduleBStatus();
        }
    

    Comments welcome.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 111k
  • Answers 111k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Fancy Upload No contest. Requires Mootools. Easy to setup, very… May 11, 2026 at 9:46 pm
  • Editorial Team
    Editorial Team added an answer To get started on the command line, first don't reinvent… May 11, 2026 at 9:46 pm
  • Editorial Team
    Editorial Team added an answer I usually use a wrapper function (via overloading most of… May 11, 2026 at 9:45 pm

Related Questions

Here's the situation: I'm developing a simple application with the following structure: FormMain (startup
I thought I had custom events nailed in Flex, but seemingly not. I am
In my Flex application, I call several .NET WebServices that return XML. However, these
Suppose I have two instances of the same class. The class has a pointer
I want to implement a function tracer, which would trace how much time a

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.