In computer programming, a switch, case, select or inspect statement is a type of selection control mechanism
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
36 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
15 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
124 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
53 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
30 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
69 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
34 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
21 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 = ...
0
votes
1answer
27 views
Losing input capabilities when using social.h functions on iOS 6.1
I've been upgrading my app to use both FB and Twitter posting... I had upgraded from the original twitter functions but now when the FBSheet and Twitter Sheets come up and I post the messages,the app ...
0
votes
2answers
67 views
ParameterSet doesn't work in custom PowerShell cmdlet in C#
I have the following code, where I try to create a custom Cmdlet for PowerShell using C#.
What I want to do with my custom cmdlet is that, user should call it with two parameters, from which first ...
0
votes
0answers
20 views
User Switch Notification by Carbon in Objective C
following codes from https://developer.apple.com/library/mac/#documentation/MacOSX/Conceptual/BPMultipleUsers/Concepts/UserSwitchNotifications.html#//apple_ref/doc/uid/20002210-CJBJDAGF
demonstrates ...
-2
votes
0answers
12 views
how to run command on network switch [closed]
I wanna to execute some commands on my network switch to get some information about that. I saw some papers that run command on backtrack like
switch# show mac-address-table
but I couldn't find any ...
0
votes
1answer
39 views
How To Make The Facebook Like Button Display None When Logged In As Page
I have the Facebook like button on my site http://theganjagirls.com ... everything looks and works fine when I'm logged into my Facebook account... But when I'm logged in as a page admin, the Facebook ...
-2
votes
3answers
87 views
nested foreach loops with switch statement not incrementing case variable [closed]
I have this code:
foreach(List<string> build in Builds)
{
int i = 0;
foreach(string item in build)
{
...
0
votes
4answers
39 views
Switch statement in jQuery not working
I was writing a little jQuery function that changes the value of a form field when the user changes the value of a drop down list.
My function for changing the data works but for some reason it is ...
0
votes
1answer
64 views
Use php switch statement to show selected item [closed]
We are meant to display only the selected item in a problem for a class. We built an html menu with drop down menus for the days and the items, then the price is input. On the bottom there is another ...
1
vote
2answers
39 views
Using Thread with paint java
I'm developing a checkers game in Java, and I stumbled on a problem.
What I'm trying to create is that when a checkerpiece is pressed, the available 2 spots in front of it should turn into grey for 2 ...
0
votes
3answers
55 views
case staement switch with an intent
I was wondering if there was a way to do this so it would look better. How can i change this so i could compare integers instead or is there a easier way to do this so i don't have a lot of if ...
0
votes
2answers
66 views
Connect to a Cisco switch with SSH and Ruby
I'm trying to connect to a Cisco Switch with SSH and ruby. The problem is that I need to enter an empty 'login as' then it will ask me for an User Name and Password. On Putty I do like this:
Here is ...
0
votes
1answer
13 views
Control Statements: Why is my 'New Balance' change when I 'charge to credit' then 'pay credit' twice?
I tried reading from the start of this Java book and do some of its exercises for summer vacation. The I came up with this problem:
"(Credit Limit Calculator) Develop a Java application that ...
0
votes
1answer
45 views
Handling textbox .change when using JQuery UI Autocomplete widget
I have a search box with a JQuery UI autocomplete function. I want the terms entered by the user to be compared against a set of cases (see "kittens" and "puppies" in the switch statement below. See ...
0
votes
1answer
65 views
PowerShell custom Cmdlet using SwitchParameter
I have the following code, where I try to create a custom Cmdlet for PowerShell using C#. What I want to do with my custom cmdlet is that, user should call it with two parameters, from which first one ...
0
votes
1answer
24 views
PHP Routing: use SQL result as “router”
I have the following index.php:
<?php
$uri = $_SERVER["REQUEST_URI"];
require_once "sql.php";
$link = mysqli_connect($host, $user, $pw, $db);
$urls = $link->query("SELECT URL FROM TEST");
...
0
votes
0answers
57 views
Moving through node field point to point coding in C
In the process of making a program that moves through a node field from point X to point Y. I am new to C and I'm having issues with errors in my code. I'm asking for your help to fix these (most ...
-5
votes
3answers
80 views
Preventing If within If functions (or cases)
I'm building a code where I have to go trough alot of if/case functions. This on itself is not really a problem only that alot of these if's are the kinda the same.
In my code it has to go trough an ...
2
votes
1answer
87 views
Why can't Scala optimize this match to a switch?
I have this pattern match that matches only on Byte values but when I add the @switch it says:
could not emit switch to @switch annotated match
What am I missing here?
Just FYI, what I have ...
0
votes
1answer
43 views
Clang Analyzer false positive or overflow?
Below is the simplification of some code of ours which seems like it demonstrates a bug in the clang analyzer, though it's possible there's a real bug in our code.
typedef enum {
value1 = ...
-1
votes
2answers
70 views
c# Case switch method in a class [closed]
Trying to have a method inside a class and I'm having trouble setting it up. Trying to set up a string appstatus method that saves the string to appstatus but first must set the value to it. I want to ...
1
vote
4answers
35 views
switch case isset triggered when case is -not- set
--Let me add this. This code works for me the way it is. I just do not know why it works.--
I can't figure this out.
switch ($_SERVER['QUERY_STRING']) {
case isset($_GET['test0']):
echo ...
0
votes
2answers
53 views
switch-case statement as a method in a public class
Looking to implement a switch case statement method inside a class. I have a class that I'm writing to from a SQL select and sql datareader. Having trouble setting up the Status class which I pass in ...
0
votes
1answer
56 views
Multiple inputs to switches in MATLAB Simulink Stateflow
I want to model a turning light from a car. To this end, I need to specify the user input for the trigger. So far I have used two binary switches - one for the turning light right and one for the ...
0
votes
2answers
43 views
Switch/Break indenting in PHP [closed]
I have a really dumb question and not really important but it has been bugging me for quite some time: how do I indent "correctly" the "break;" inside a switch statement in PHP?
Like this:
case ...
1
vote
1answer
41 views
Mobile & Desktop CSS files, cookies and switching between the two
The web site I am currently working on is using a custom CMS, and there has been mobile integration using split CSS files, so I have:
- desktop.css
- mobile.css
There is a Javascript that detects ...
0
votes
1answer
29 views
Condense switch statements in bash; cards [closed]
So I have this completed code here, but I wanted to make it more efficient, specifically the switch statements. I know there's a way to print out all the suites and denominations results by ...
0
votes
0answers
42 views
How do i populate a listbox with registry subkeys from a dropdown list which has root keys?
I've been trying to populate a list box with subkey values from a drop down list, which contains the names of all the root keys as strings. Each time i remove the the default field it gives me the ...
0
votes
0answers
42 views
How can I use switch statement in codeigniter form_dropdown?
I want to use switch statement in codeigniter form_dropdown.
My code seems like:
$schedule_options = array();
foreach($schedules as $schedule){
$schedule_options[$schedule->scheduleId] = ...
2
votes
3answers
49 views
change the used equality operator for a “case” block (Ruby)
I want to have a code like:
x = Date
case x
when Date
puts "Date"
when String
puts "String"
else
puts "Unknown"
end
I know that x == Date is true, but x === Date is false. So I get "Unknown" ...
0
votes
2answers
38 views
How to use variable name in a switch statement?
Can I somehow simplify my code below and use only one switch statement? It looks like I need 3rd switch so it would be great to use only one if possible.
$input_separator= ...
0
votes
1answer
53 views
Dynamic switch statement for keypress (Javascript)
I've got a website that has full width and height div's (each div is effectively a page) and you navigate through them using links and hashes; <a href="#work"></a> will scroll you to the ...
-1
votes
0answers
19 views
Trying to figure out objects and switch statements
Ok the short of it is that I have 4 dice that are 12 sided each. The dice get rolled a million or so times then the results get tallied and a winner is declared. I had the dice rolling and giving me ...
-2
votes
4answers
80 views
Hexadecimal Value In C++ Switch Statement
Is it possible to perform a switch with a hexadecimal case statement?
for example:
switch (integer) {
case: 1
function();
break;
case: F:
function();
...
7
votes
3answers
131 views
final variable case in switch statement
final int a = 1;
final int b;
b = 2;
final int x = 0;
switch (x) {
case a:break; // ok
case b:break; // compiler error: ...





