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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T08:52:09+00:00 2026-05-11T08:52:09+00:00

Why won’t this simple subtraction work? int MyPageNumber = Convert.ToInt32(cboPageNumber.SelectedItem); MyPageNumber += (MyPageNumber –

  • 0

Why won’t this simple subtraction work?

int MyPageNumber = Convert.ToInt32(cboPageNumber.SelectedItem); MyPageNumber += (MyPageNumber - 1); //does not work int MyNewPageNumber = MyPageNumber - 1; /works 

I was also hoping someone could tell me why this gives me a ‘red line’ for not being able to do a cast:

short MyPageNumber = Convert.ToInt16(cboPageNumber.SelectedItem); MyPageNumber += MyPageNumber - ((short) 1); //does not work says can't cast 

What am I not understanding? Is the + turning it into a String in the examples?

Thank you.

  • 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. 2026-05-11T08:52:09+00:00Added an answer on May 11, 2026 at 8:52 am

    Look at exactly what this does:

    MyPageNumber += (MyPageNumber - 1);  

    It adds MyPageNumber-1 to the existing value. So if MyPageNumber is 5, you end up with 9 instead of the 4 which you presumably want.

    Now for the second problem, you’ve basically got a situation equivalent to this:

    short x = 5; short y = 10; short z = x - y; 

    It looks okay, but C# doesn’t actually have a subtraction operator for shorts – it only has it on ints, so it’s implicitly converting both x and y to int. The result is then an int too, which you can’t assign back to z. You need:

    short z = (short) (x - y); 

    (or the equivalent with your real variable names).

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

Sidebar

Ask A Question

Stats

  • Questions 66k
  • Answers 66k
  • 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
  • added an answer liftM and head are all very well, but let us… May 11, 2026 at 11:35 am
  • added an answer You mean last autoincrement id? <?php $link = mysql_connect('localhost', 'mysql_user',… May 11, 2026 at 11:35 am
  • added an answer May be I oversee something, but all you want can… May 11, 2026 at 11:35 am

Related Questions

Any ideas why this won't validate here: http://validator.w3.org/#validate_by_input It seems the form input tags
Can anyone explain why following code won't compile? At least on g++ 4.2.4. And
I fail to understand why this code won't compile ExecutorService executor = new ScheduledThreadPoolExecutor(threads);
Does anyone know why the DropShadowBitmapEffect and the EmbossBitmapEffect won't work on a TextBlock
Why are the British confused about us calling bread rolls “biscuits” when they call bread rolls “puddings”?
Why are SQL distributions so non-standard despite an ANSI standard existing for SQL? Are
Why does Visual Studio declare new classes as private in C#? I almost always
Why is the following C# code not allowed: public abstract class BaseClass { public
Why does C#.Net allow the declaration of the string object to be case-insensitive? String
Why should I or shouldn't I use dirty reads: set transaction isolation level read

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.