In computer programming, a switch, case, select or inspect statement is a type of selection control mechanism
0
votes
2answers
28 views
Accessing a returned value from a different case
Hi It's the 3rd time i'm posting this question on this forum and up to now no one has been capable to enlighten me about this situation.
I only pasted the code that matters here and will try to ...
-1
votes
4answers
52 views
How to Make If statement for a specific Image source? [closed]
I have this line in my program (Run in Dreamweaver) which is the following:
function go() {
if((document.test.test1.src == document.test.test2.src && document.test.test2.src == ...
0
votes
1answer
33 views
Passing a value from one case to another in switch statement
What is the syntax from passing a value from one case to another using a switch/case statement ?
In case one i'm 3 verifications ...
say 3 functions that each should return a boolean.
If all the 3 ...
0
votes
1answer
22 views
“Jump dictionaries”, switch statements, or how to do “jump dictionaries” without eval?
I like the concept of "jump dictionaries" that contain key:values, where the values are functions. I'm not sure if I should like this concept or not, though.
I want to replace a long list if if-else ...
-1
votes
1answer
51 views
returning a variable to a method ofrom within a switch statement
Hi guys this is my program, I've been at it for a few hours, I decided to reorganise my code in functions so it's clearer to see ...
For some reason i'm loosing access to my variables inside the ...
-2
votes
5answers
46 views
Switch case with Select Option
I'm having problems to set a Switch Case with the value of a Select options, here's the code I'm using:
<form id="selectcub" name="selectcub">
<select id="cub01" name="cub01" ...
2
votes
1answer
16 views
Switching the order of multiple sets of elements with jQuery
I have a number of elements on a page which contain a header and an image, which I would like to change the order of. E.g switching the order of the img with the h2:
<section>
<img>
...
0
votes
4answers
55 views
.net Switch statement and random number: Not all code paths return a value. Must I include a default?
Heres a tiny function to randomly return either +1 or -1
public static int PlusOrMinus()
{
int chance = MyRandom.Random.Next(0, 2);
switch (chance)
{
case 0:
return ...
0
votes
1answer
22 views
coffeescript jQuery - how to refactor this (noob) approach?
after starting to learn some coding I did this (very ugly, non DRY) star rating switch with bootstrap in a rails4 app. I already did the codeschoool coffeescript tutorial, but it seems ruby is a ...
-1
votes
0answers
7 views
I've been trying to make my lego robot go round and round a table just for once and then stop
I used a switch sensor(ultrasonic)to detect the obstacle.It works well but I need a condition to exit that loop iin which I have the switch.How can I stop it in order to follow the walls of that ...
2
votes
6answers
72 views
switch loop into a for: why is every case true?
for(int i = 0; i <= lvl-1; ++i) {
id = sequence.get(i);
switch(id) {
case 1:
sq1.setBackgroundResource(R.drawable.square_show);
...
1
vote
4answers
67 views
c++ int switch statement always goes to `default`
I have a switch statement that is based off an int comparison, but for some reason, it keeps failing on true comparisons, and skipping to the default. Here's my code:
string Error(int errorNum, int ...
0
votes
3answers
33 views
PHP: Switch check same value from multiple variables
I am setting Switch to select font family for multiple places. For instance for body and for paragraph. Both has own selection dropdown but same font family. Means body as arial, tahoma, verdana than ...
-4
votes
8answers
73 views
c++, problems with switch operator [closed]
Now I am looking through some c++ test, and here I found such code:
int main()
{
for (int i=0; i<3; i++)
{
switch(i)
{
case 0: cout<<"ZERO";
case 1: ...
2
votes
3answers
59 views
Why aren't we allowed to use even global const qualified variables in switch-case?IBM support portal hints we can
Huh it's getting so muddy.The following IBM Support Portal link seems to suggest that the reason we can't use const qualified variables as real constants is because their life-time is not the same as ...
0
votes
2answers
36 views
Extendable design pattern based on database records or enum values
I am working on a project that needs to be very extendable. It is about performing actions on the basis of a string code or an enum value. I am now using a switch-case statement and calling the ...
0
votes
2answers
36 views
Is it possible to use multi conditions in PHP switch resultant with multi actions (executible codes)?
Is it possible to use multi conditional statement in PHP (switch) resultant with multi conditional (executable codes)? The code might be look like this:
In case of $fifth only was 9, $fifth -= ...
-3
votes
0answers
21 views
How can I switch 5.1 audio output channels?
I have logitech x-540 5.1 audio system. How can I switch front right into front left, front left into rear left, rear right into front right, rear left into rear right?
**I want to do it ...
0
votes
0answers
31 views
How do I use neo4j Relationship types in a switch statement?
In ReqsDb.java I have:
public static enum RelTypes implements RelationshipType {
IDENTIFIES, IS_MEMBER
}
In another class I have:
ReqsDb reqsDb = new ReqsDb();
for (Relationship rel : ...
0
votes
1answer
37 views
Java Past Paper - Is it just me or wording of this switch statement q is making it unsolvable?
I have been revising for my exam and I have found a question in one of my past papers which (at least to me) seem unsolvable. I will have to attach it as a picture because it has been scanned and ...
0
votes
0answers
24 views
running commands with ssh python and exscript package failed
I'm trying to execute some configuration commands on my switch with ssh connection and python development tools (exscript package), I found this function which run perfectly in my localhost but not in ...
0
votes
1answer
39 views
How to move to next case in switch condition
I am in need of a code, using which in my Android App, I want to go through all the cases of switch condition , (Not randomly!!!).I am able to move it randomly as follows.
public void ...
0
votes
2answers
39 views
Switch case logical expression statement in Java - versus JS or PHP
in JavaScript and also I've seen it in PHP : You can use a logical expression inside you cases :
For Example :
switch(true){
case (d<10):
document.write("Less than 10");
break;
case (d==10):
...
3
votes
1answer
72 views
Is this a switch statement smell?
I am looking through someone's C code, and discovered something I didn't even know was possible. Inside some of the cases, the switch variable is modified, with the intention that another case is ...
0
votes
5answers
72 views
Initializing in a switch case in C
Is it bad practice to initialize variables inside a specific case of a switch?
I have quite a few variables that is only relevant for one of my cases, and can't seem to find any info on this.
Thanks ...
-3
votes
3answers
66 views
Why does Java disallow switch on static enums? [closed]
I have to work with a library that defines an enum like this:
public static enum LibVal {
VAL_1,
VAL_2,
VAL_3;
}
I get this enum as a method argument:
public void libCallback(LibVal ...
0
votes
0answers
35 views
Switch HEX value with Colour name, to store colour choice as VAR. Flash as3
I am creating a customisation app in Flash Pro CS5, and I has variables set up to record the changes to options. The following code is in the topmost layer on the stage.
//Clothes Variables
var ...
0
votes
4answers
78 views
Choose of a lot of cases instead of c >= '0' && c <= '9' to 0-9 numbers checking
The following code is part of an intepreter that I'm reading. I'm trying to figure why exactly use this instead of simple c >= '0' && c <= '9'?
switch(ch) {
//...
case '0': case ...
0
votes
1answer
13 views
Android Switch compatibility libraries - theme sometimes not applied
I'm currently using the following Switch open-source compatibility library:
https://github.com/ankri/SwitchCompatLibrary
So far it works well, except on some devices (last reported on Android ...
0
votes
0answers
4 views
TableView to DeatilView withSwitch or For Iteration ? How to?
I have a TableView(_contentList) with 4 items:
_contentList = [[NSMutableArray alloc] initWithObjects:@"Item1",@"Item2",@"Item3", nil];
and a NSMUtableArray(_maxImages) with 5 images;
_maxImages ...
-1
votes
4answers
77 views
While,switch, case statement
I'm using a while, switch, case statement for my menu and when it runs it keeps saying enter choice, I know while(1) creates an infinite loop but is there a way to avoid this?
while(1)
{
...
0
votes
1answer
27 views
Providing Option to change Themes Using Spinners
I am very new to java and android programming and hence, my understanding is not very solid and hence, I would be much obliged if am provided with some assistance here.
I want to provide an option to ...
0
votes
1answer
53 views
Generate PHP switch based on folder content
Let us say I have a folder containing 3 files; file1.php, file2.php, file3.php.
In the same folder, I have index.php, which I want to generate switch cases for each file.
$files = array();
$folder = ...
1
vote
0answers
13 views
how can i count the working days of an employee generating 1 2..31 days and the time will only appear to those days using vb.net
Dim cmd As OdbcCommand = New OdbcCommand("SELECT distinct checktime,format(CHECKTIME,'Short Date') as adlaws, format(CHECKTIME,'ampm') as formatz,checktype " & _
...
-4
votes
2answers
47 views
Java method/switch [closed]
getCalculationType
Purpose: To display a menu to the user so that the use can choose which
calculation method they want to use (Simple, Compound Daily, Compound
Weekly, or Compound Monthly)
...
4
votes
2answers
62 views
good practices while using enums in java
I have a problem related with implementing something in Java and I guess Enums are a part of it (or maybe it's just me who made them a part of the problem.
So the thing is I have a model class, lets ...
1
vote
1answer
94 views
Change Windows 8 App Background in real time (C#/XAML)
I'm doing a Windows 8 application (METRO UI / XAML / C#) and I have a Toggle Switch in the settings bar. I want this switch to select between a "light" and a "dark" theme, in real time.
I already made ...
0
votes
1answer
69 views
Unable to use enum in switch statement
I am attempting to use an enum in a switch case. For some reason the switch case is stating in netbeans that it is expecting an int but finding an enum. How would I go about using the enum for my ...
1
vote
2answers
49 views
Comparing Array Key values to determin conditional statements the OOP way?
I have been looking at this problem for quite sometime and finally created my answer.
I have three array keys that will output different values. The condition of each key will either be true or NULL ...
-1
votes
1answer
26 views
Android List view or any other with switch option [closed]
I want to make the above layout from code behind. It could be a listview with switch or any other.
Can someone give me some idea about how to proceed?
I am open to any layout. Relative layout will ...
0
votes
0answers
62 views
Connect to a Cisco Switch with Ruby
[EDITED]
I'm trying to connect to a Cisco Switch and execute a few commands. My first try was with Net::SSH and I couldn't establish a channel. Second try was with plink and shell commands. Now I'm ...
0
votes
1answer
44 views
How can Randomize the cases in switch condition without repeating
Hi I am trying to make an Android App in this model.Main aim is to Randomize the cases in the switch condition Shown in the below code. As I am Again calling the method in each case, The chances of ...
1
vote
2answers
126 views
Why do case statements only accept constants?
What is the reason behind the fact thet switch statements in C++ have to be written with constants?
Lets take a look at the following code:
switch(variable)
{
case 1:
case 2:
case 3:
case 4:
...
-1
votes
3answers
32 views
UITableView header title with undefined number of sections
If I have a UITableView that it has [arrayofStudents count] sections:
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return [arrayofStudents count]
}
And then I want to make ...
-1
votes
0answers
18 views
MySQLi Fetch Assoc Returning Null
Here is my code:
`final public function getSetting($z) {
global $db;
$q = $db->query('SELECT * FROM `zip_settings` WHERE variable = "{$z}"');
while($return = ...
1
vote
2answers
227 views
Chameleon Templating: Default value in 'tal:switch'
I am trying to build a switch/case structure around a range of integer values. As stated in the language reference, if the case expression is the symbol default, it always matches the switch. However, ...
8
votes
6answers
7k views
Switch vs if statements
I'm in a dilemma. Which is best to use and why.. switch or if?
switch ($x)
{
case 1:
//mysql query
//echo something
break;
case 2:
//mysql query
//echo something
break;
}
...
if ($x ...
15
votes
4answers
8k views
Using continue in a switch statement
I want to jump from the middle of a switch statement, to the loop statement in the following code:
while (something = get_something())
{
switch (something)
{
case A:
case B:
...
489
votes
6answers
90k views
291
votes
9answers
243k views
Switch Statement with Strings in Java
Why can't I switch on a String in Java?
Is this functionality going to be put into a later Java version?
Can someone point me to an article, or themselves explain why I can't do this, as in, the ...





