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 6373261
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T01:20:32+00:00 2026-05-25T01:20:32+00:00

I have a bunch of code below. However, I am hitting some bugs because

  • 0

I have a bunch of code below. However, I am hitting some bugs because the methods Move() and Genius() are running logic too much. I only want to two methods to run if they are being called by the submit click method. How can I do this?

namespace ShotgunApp
{
    public partial class SingleGame : PhoneApplicationPage
    {
        public static class AmmoCount
        {
            public static int userAmmo = startVars.startAmmo;
            public static int geniusAmmo = startVars.startAmmo;
        }

        public static class Global
        {
            public static int lives = 1;
            public static string GeniusMove;
            public static string UserMove;
        }

        public SingleGame()
        {
            InitializeComponent();
            GeniusAmmo.Text = "ammo: " + AmmoCount.geniusAmmo;
            UserAmmo.Text = "ammo: " + AmmoCount.userAmmo;   
        }

        private void submit_Click(object sender, RoutedEventArgs e)
        {
            if (((String)submit.Content) == "Submit")
            {
                Move();
                submit.Content = "Wait for Genius...";
                uReload.IsEnabled = false;
                uFire.IsEnabled = false;
                uShield.IsEnabled = false;
                Genius();
            }
            else if (((String)submit.Content) == "Go!")
            {
                GeniusSpeak.Text = "";
                OutcomeDesc.Text = "You have " + Move() + " and Genius has " + Genius();
                Outcome.Text = "ANOTHER ROUND...";
                submit.Content = "Continue";
            }
            else if (((String)submit.Content) == "Continue")
            {

                uReload.IsEnabled = true;
                uFire.IsEnabled = true;
                uShield.IsEnabled = true;
                OutcomeDesc.Text = "";
                Outcome.Text = "";
                submit.Content = "Submit";
            }
        }


        public string Move()
        { 
            if (uReload.IsChecked.HasValue && uReload.IsChecked.Value == true)
            {
                UserAmmo.Text = "ammo: " + ++AmmoCount.userAmmo;
                Global.UserMove = "reloaded";

            }
            else if (uShield.IsChecked.HasValue && uShield.IsChecked.Value == true)
            {
                Global.UserMove = "shielded";
            }
            else if (uFire.IsChecked.HasValue && uFire.IsChecked.Value == true)
            {
                UserAmmo.Text = "ammo: " + --AmmoCount.userAmmo;
                Global.UserMove = "fired";

            }
            else
            {
                submit.Content = "Enter a move!";
            }

            return Global.UserMove;
        }

        public string Genius()
        {
            GeniusSpeak.Text = "Genius has moved";
            submit.Content = "Go!";

            Random RandomNumber = new Random();
            int x = RandomNumber.Next(0, 3);

            if (x == 0)
            {
                Global.GeniusMove = "reloaded";
                GeniusAmmo.Text = "ammo: " + ++AmmoCount.geniusAmmo;
            }
            else if (x == 1)
            {
                Global.GeniusMove = "shielded";
            }
            else if (x == 2)
            {
                Global.GeniusMove = "fired";
                GeniusAmmo.Text = "ammo: " + ++AmmoCount.geniusAmmo;
            }

            return Global.GeniusMove;

        }
    }
}
  • 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-25T01:20:32+00:00Added an answer on May 25, 2026 at 1:20 am

    Store the last results in data members:

            private string lastMoveResult = string.Empty;
            private string lastGeniusResult = string.Empty;
    
            private void submit_Click(object sender, RoutedEventArgs e)
            {
                if (((String)submit.Content) == "Submit")
                {
                    lastMoveResult = Move();
                    submit.Content = "Wait for Genius...";
                    uReload.IsEnabled = false;
                    uFire.IsEnabled = false;
                    uShield.IsEnabled = false;
                    lastGeniusResult = Genius();
                }
                else if (((String)submit.Content) == "Go!")
                {
                    GeniusSpeak.Text = "";
                    OutcomeDesc.Text = "You have " + lastMoveResult + " and Genius has " + lastGeniusResult ;
                    Outcome.Text = "ANOTHER ROUND...";
                    submit.Content = "Continue";
                }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a bunch of code of the form: someVector.push_back(Foo(some name, 1.0, 3.1415926); someVector.push_back(Foo(different
I have an application with some bunch of code like this: errCode = callMainSystem();
I have a web application with bunch of HTML code. There are some style-attributes
I have a bunch of movieclips that are animated using TweenLite, (code below), but
I have a bunch of generic code that is used a lot, which i'd
I have a bunch of PHP code that is auto-generated and it puts all
I am fairly new to C++ and I have seen a bunch of code
I have a bunch of these little bits of HTML code repeated over and
I have a bunch of occurrences of this kind of boilerplate code in my
I have a bunch of Workflow foundation 4.0 RC code activities that consume web

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.