1
vote
11answers
229 views
Execute code in if-else statement [closed]
Possible Duplicate:
What’s the “condition” in C interview question?
How to execute code in 'if' and 'else' blocks in a single run in C?
Edit: the questi …
0
votes
5answers
134 views
C++ String manipulation - if stament
I have the following code that works correctly. However after I add an else statement anything always evaluates to else
wgetstr(inputWin, ch); //get line and store in ch variable
…
0
votes
1answer
17 views
Search for current website title and host bookmarklet
I have a bookmarklet which gets current website TITLE and search for it on my website:
javascript:q=(document.location.host);void(open('http://example.com/search.php?search='+docu …
3
votes
5answers
162 views
Odd Perl conditional operator behavior
I'm doing some work in Perl and I ran across an odd result using the conditional operator.
The code in question:
($foo eq "blah") ? @x = @somearray : @y = ("another","array");
…
0
votes
4answers
144 views
Which is faster - if..else or Select..case?
I have three condition to compare. Which one is more faster between the following two? Please point me out. Thanks all!
If var = 1 then
Command for updating database
ElseIf v …
3
votes
4answers
50 views
Comparison of conditional statements.
Are following ways are same.(Considering the evaluation time)
if(Condition1)
{
//code1
}
else
{
//code2
}
condition1 ? code1 : code2
Are they just synt …
0
votes
4answers
63 views
AS3 Compiler error 1083: problem with else syntax
Hey there,
I'm creating a simple click and scroll for a future menu for my personal site. I have a box, I called it thing_mc, and I have 3 positions for it. I have a next and prev. …
1
vote
4answers
57 views
Is there a reason to prefer a switch over an if statement with only one condition?
I found the following code in my team's project:
Public Shared Function isRemoteDisconnectMessage(ByRef m As Message)
isRemoteDisconnectMessage = False
Select Case (m.Msg) …
0
votes
3answers
131 views
If else or case statement help!
Hi
I could really use some help with the best way to accomplish the following:
I have the below in my controller (and I know this should not be here and needs to move to the model) …
2
votes
5answers
214 views
Double If Else Problem in C#
I constantly find myself writing similar code like the example below:
if (object["Object Name"] != null) {
if (object["Object Name"] == "Some Value") {
// Do Statement …
1
vote
3answers
40 views
PHP, create_function or evalute it at runtime?
Hi all, i have a class with some method that depend by one parameter.
What is the best way to write this method?
Example:
First way
class Test{
var $code;
function Tes …
0
votes
2answers
48 views
Excel Embeded If Statements
In excel is it bad to have about 1000 embedded if statements? I have about 1000 options that I want to pre-populate in other excel fields, what is the best way to do this other the …
2
votes
2answers
188 views
Alternative conditional syntax (if-else) failing on PHP 5.3.0 (xampp)
Hello,
I recently upgraded to xampp v1.7.2 which dumped PHP 5.3 on me. Along with that all my httpd.confs and php.ini's got wiped out (I had taken it for granted that this relea …
0
votes
9answers
88 views
What is the most terse syntax check for checking preconditions and then calling a switch statement?
What is the most terse syntax to combine a check for some preconditions with a switch statement? Can I combine an if/else and switch statement?
if (!IsValid(text))
{
DoSomeLogg …
14
votes
23answers
1k views
Is it acceptable to only use the ‘else’ portion of an ‘if-else’ statement?
Sometimes, I feel like it is easier to check if all of the conditions are true, but then only handle the "other" situation.
I guess I sometimes feel that it is easier to know that …
