Search results

  1. J

    Need some help on a program again

    I need some help on a program again. Don't remember if I explained this in my last post, but I'm taking a VB class in school, and the professor is absolutely horrible at teaching it. I've got a pretty good handle on this stuff and I'm usually able to figure it out on my own, but now is not one...
  2. J

    Help with select case statement

    Unfortunately I don't have that flexibility. The assignment says we have to use Case Select for this problem. But it's not really a problem, I can still complete it, I'll just have to change the order of the cases and play with the numbers a little bit. I just wanted to see if it was possible to...
  3. J

    Help with select case statement

    I think you're right. I tried changing the code to use and (both "and" and "&"), but it still wouldn't work though.
  4. J

    Help with select case statement

    It does appear to work if I set the 700 to 750 case ahead of the 500 to 900. Thank you very much. Still a bit curious as to if it's possible to make it work the way I had it before though, lol.
  5. J

    Help with select case statement

    Tried it. It compiles fine with the Not statement in there, but it still says anything between 700 and 750 is on the upper floor, which is incorrect. I think I could change the case to something like 500 to 699, Is > 751 and it'd probably work, but I'd rather figure out how to do it this way...
  6. J

    Help with select case statement

    Hey guys. I'm taking a visual basic class in college, and I'm having trouble with some code. Public Class Form1 Private Sub btnFindLocation_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnFindLocation.Click 'Define variables Dim callNumber As...
Back
Top Bottom