In computer programming, a switch, case, select or inspect statement is a type of selection control mechanism
0
votes
2answers
27 views
XSD schema handling one of two values
I am creating an xsd schema to support the following xml structure:
<Switch code="enable'>
.....more..stuff.....
</Switch>
Here is how it is declared in the schema
<xs:element ...
2
votes
2answers
79 views
How to handle derived classes at UI without switch statements when using MVC/MCP?
I'm using a MVC/MCP pattern for my C# (WinForms) application.
In the business logic I have derived classes like
abstract public class Item
{
abstract double CalculatePrice();
...
}
public ...
0
votes
1answer
60 views
Changing an image in a switch statement
I have an image in my HTML, but i would like to change the image when an answer is given by the user. For some reason the first function works, but the image doesn't change.. Can someone help me ...
0
votes
5answers
143 views
Rewrite if else into switch
I wrote some if-else statements like this:
if (workedDays > 0 && workedDays <= 180)
{
x= 14;
}
if (workedDays > 180 && workedDays <= 540)
{
x= ...
0
votes
2answers
81 views
Java enum switch
I have a simple enum
public enum Columns {VENDOR, ITEM};
That I am trying to extract and drive a switch code block.
What I am getting classNotFound for what appears to be the inner class for the ...
-5
votes
3answers
84 views
switch case (in C) [duplicate]
we have 4 regions: a b c d
we want to put the numbers in these region.
how to do this using only switch statement:
the number divisible by 10 and divisible by 7 ın region a
the number divisible ...
3
votes
4answers
58 views
Change href based on URI using PHP
I'm trying to make a main menu bar link dynamic, based on the visitor's current page.
I started with
$path = $_SERVER['REQUEST_URI'];
Which, of course, returns things like
/subfolder/page.html
...
13
votes
4answers
319 views
PHP If/ELSE or Switch/Case Statement
I have give inputs which can be either 1 or 0
$no_required
$on_arrival
$schengen_visa
$uk_visa
$usa_visa
I have the Following Cases and i want to display unique message back to the user for each ...
1
vote
2answers
182 views
Easier way to use Switch/Case Statement in Java Android
I have a getItem(int position) method of type Fragment. I have about more than 100 pages meaning every page is different I was trying to use switch and case statement. Every case returns a new class ...
2
votes
8answers
364 views
If Condition inside switch case [duplicate]
I am trying to convert an if statement to switch cases (for readability)
1) I've read switch statements are aweful in general - Is that true?
...
0
votes
1answer
26 views
What is the difference between “switch” and “filter” in Tracing in .NET?
What is the difference between "switch" and "filter" in Tracing in .NET ? They seem to work in similar way.
<system.diagnostics>
<trace autoflush="true" indentsize="5">
...
-1
votes
3answers
87 views
case statements not working? [closed]
I am trying to make a simple calculator in Java.
I have my program below. The method call printIntro() kind of tells you how it would work.
I tried compiling the program but the operation ...
0
votes
2answers
119 views
assignment switch case c ++
Requirements
VULTURE IS V, OWL IS O, EAGLE IS E...
A for loop to input the data each bird watcher has collected.
inside the for loop, a do ... while loop to input and process the data collected by ...
2
votes
1answer
370 views
Custom switch widget in Android 4
I am getting crazy with switch buttons in Android 4.
First of all, I have set a selector as background with two different PNG files selected from drawable folder:
<?xml version="1.0" ...
0
votes
2answers
88 views
SWITCH statement for profile picture uploads
I have a switch statement which determines the filetype of an image uploaded for use as an avatar in my application, however it seems to be a little faulty, insofar as it allows for a successful ...
0
votes
1answer
73 views
if/else jquery between three elements
alright, i am trying to make it so when you click one div it "turns off" the other two div buttons as well as making some content invisible
jquery:
var open1 = false;
var open2 = false;
...
1
vote
2answers
60 views
Java switch structure not reading '\n'
I am writing an lexical analyzer. I have a switch structure, and here is a code snippet of the are where the area occurs.
//whitespace
case ' ':
case '\t':
case '\n':
...
1
vote
2answers
66 views
How to get JavaScript within HTML to work?
I am new to javaScript, I am trying to get a function to run on button click which I have created inside an HTML file. I want the function to return the values to a the paragraph tag in the html file. ...
0
votes
0answers
17 views
multiple enum and “switch” operator
I have the following a code:
var statusCode = response.StatusCode;
switch (statusCode)
{
case ObexStatusCode.Accepted:
break;
case ...
-1
votes
1answer
40 views
Bash case not properly evaluating value
The Problem
I have a script that has a case statement which I'm expecting to execute based on the value of a variable. The case statement appears to either ignore the value or not properly evaluate ...
0
votes
0answers
34 views
Code analysis tool warns about “unreferenced data members” when they are constants
I have declared a string constant
private const SECOND_TEXT As String = "SecondTextValue"
and i am using this in a Select-Case statement inside a function like this -
Public overloads overrides ...
0
votes
4answers
68 views
Multiple if statements in PHP
I know that this is not the way to do it but I'm having some trouble trying to set a variable using conditional statements.
For some context, $foo, $foo_1 and $foo_2 are checking to see if a form ...
0
votes
1answer
68 views
Switch textColor does not work
I'm having a bizarre problem with standard android Switch component.
I've assigned my custom tracker and thumb drawables - everything seems to look and work ok, except the the color of the textColor ...
0
votes
0answers
25 views
Changing images in DOM using Switch statement
Wondering if there is a way to change your images onclick in HTML using a switch statement? I've gotten as far as getting the image to change but the following image is just a ripped file icon. I'm ...
0
votes
3answers
74 views
Android:Error - Case expressions must be constant expressions
I have been working on an app, and recently got a new computer. I had to import my existing code into this computer. Now, when I do this I get a few errors in the build path, so I fix them. But now, I ...
4
votes
3answers
58 views
Switch on Enum when strings contain dash
I would like to use enum as a way of switching over strings, however java complains as my string contains "-". As seen in the code below where IC19-01 and IC19-02 contain "-".
public class CMain {
...
-1
votes
1answer
44 views
jquery switch case and after(anything) stuck
I made a program, which is show/hide buttons depend on what you clicked. It is simple, but I have a big problem. I wan't to position this buttons hierarchically, first time I tried append "" tag ...
0
votes
0answers
44 views
Symbolic link in svn working copy for a switched directory
I work on several (2-20) projects of non-shared-ancestry in a single repo, that share common resources of GBs of binary data stored in the repository at only a single place. These projects utilize svn ...
0
votes
3answers
82 views
c# eliminate switch requirement
My case value text is always be equals to the relevant OSResultStruct in the code for "The way i have it implemented now and is working".So for example if the case is osedition then the property is ...
5
votes
6answers
98 views
Java: Can I fall through only one case in a switch statement
In Java, can I fall through only one of the cases in a switch statement? I understand that if I break, I will fall through to the end of the switch statement.
Here's what I mean. Given the following ...
2
votes
2answers
82 views
How to understand strange behavior of switch stament? [closed]
I have this function
private function getCurrencyByCountry($country){
switch($country){
case "US": return "USD"; break;
case "UA": return "UAH"; break;
case "FR":
...
1
vote
1answer
38 views
'or' operator inside switch PHP [duplicate]
Well, I think this is kinda weird but I would like to know if I can use the 'or' operator inside a switch something like this:
$pet = 'cat';
switch($pet)
case 'cat' or 'Cat':
echo 'Is a ...
1
vote
2answers
111 views
Combining Continuous Loop in Switch-Case Function
I have a robot performing a dance, and I am trying to make it so that during the dance, if at any point the robot runs into a wall (a while loop im assuming), it will display something on the lcd ...
1
vote
2answers
50 views
C: switch with cases to determine type of output msg (stored in char)
I'm a bit of a newbie but I've spent quite a bit of time trying to understand what I'm doing wrong here..
I'm using Turbo C and some of the time the output message I get is actually a part of the ...
1
vote
2answers
63 views
What's wrong with this switch statement and jQuery?
So you can probably see what I'm trying to make. And I thought it was working fine too, but then I noticed it will just load the same 5 posts over and over again. So I tried manually adding a switch ...
-2
votes
2answers
71 views
How to add switch to action bar [closed]
I tried this code, but it doesn't work:
ActionBar bar = getActionBar();
Switch swi = new Switch(null);
bar.setCustomView(swi);
0
votes
1answer
32 views
typdef enum issue
What I am looking at is probably a simple issue, but still could not figure out what is wrong with the code:
in header file(.h) im declaring this:
typedef enum {
ActivityTaskAdd = 1,
...
0
votes
4answers
65 views
Why can switch only compare to const values?
I'm just curious: Take a switch-statement like:
switch(myVar)
{
case(label):
...
break;
}
Why must label be const?
0
votes
2answers
63 views
statement not working in for loop
"The actual issue I am having is that It just stops running after giving out the number of questions. I've corrected the "%d%" to "%d" and its still having that issue"
I'm currently working on a ...
0
votes
1answer
67 views
Switch case with Strings in Java - garbagy ?
Java introduced switch case with Strings in its Java7. I was wondering if using such switch case will create garbage.
For example in my program,
String s = getString();
switch(s)
{
case ABC: // ...
-1
votes
2answers
325 views
php contact form send to specific email depends on user selected option
I'm having problem in my send contact php file. I wanted the email to send based on the subject the visitor choose, for example: Padicure Booking subject the email will send to booking@example.com ...
0
votes
2answers
121 views
Solution for Magic Number issue…?
Consider the following code segment...
public static UserStatus getEnum(int code) {
switch (code) {
case 0:
return PENDING;
case 1:
return ACTIVE;
...
2
votes
1answer
69 views
Erlang: case..of construct for function call return?
The errors generated by the code are
2> X = "2".
"2"
3> case_:main(X).
main 50
sender 50
** exception error: bad argument
in function case_:sender/1 (case_.erl, line 14)
in call ...
0
votes
4answers
256 views
switch for type string for java 1.6 [duplicate]
I have the following code and I'm wondering if there is a way to use a switch block instead of a bunch of if/else statements. I know that Java supports strings in switch blocks as of Java 1.7 but I'm ...
-6
votes
1answer
79 views
nested switch statement [duplicate]
How can I create a two switch statement that is arranged correctly here is my program but its ...
0
votes
1answer
45 views
Switch gets toggled by itself when gone off screen in ListView - CursorAdapter
I am having trouble figuring this one out.
I have a ListView with CursorAdapter and if item goes offscreen the switch resets it self. I have a listener onCheckedChangeListener set on the switch, ...
2
votes
6answers
62 views
Re-instantiating variables in switch case [duplicate]
Why I cannot create variables in a each case with same name. For example, from the code below, in case 3 it will complain that String name already exists - but why would it? Case 1 has never been ...
3
votes
3answers
61 views
python - Simulating 'else' in dictionary switch statements
I'm working on a project which used a load of If, Elif, Elif, ...Else structures, which I later changed for switch-like statements, as shown here and here.
How would I go about adding a general "Hey, ...
0
votes
2answers
94 views
Why Can't I Use An Array in a Switch Statement in C?
I've written a program that generates 1,000 random numbers in the range of 1-10. What I then want it to do is tell me how many times each number was produced. But, for some reason why I run this ...
0
votes
2answers
54 views
Alternating row colors in ExpressionEngine table
I have some code that creates a table that alternates row colors based on the row value of the entry.
<table class="authorList" cellspacing="0">
{exp:channel:entries channel="team" ...







