0
votes
0answers
8 views
Transfer of entire contents including white space of non-volatile storage on switch to a server over ssh
This is a feature request for our networking switch where a customer wants complete binary dump of the entire contents (including white space) of all the non-volatile storage we have on our equipment …
0
votes
6answers
115 views
c++ multiple enums in one function argument using bitwise or “|”
Hi,
I recently came across some functions where you can pass multiple enums like this:
myFunction(One | Two);
Since I think this is a really elegant way I tried to implement something like that …
0
votes
2answers
20 views
IPhone - ViewSwitch Problem
HI everybody, I've got a problem with the view-switch. When first switching into the landscapeview everything seems to be ok, but switching back into the portraitview my view is scaled in the wrong …
0
votes
0answers
7 views
WPF PreviewKey fails on application switch
I have a WPF application that makes use of the PreviewKeyUp function to handle keystrokes before they might otherwise be dealt with.
It works fine, but often (not always) if I switch to another …
1
vote
4answers
105 views
Status “S” in Subversion
At some point all files in my working copy got marked with "S" symbol as shown below:
$ svn st
M S AclController.php
S InstallationController.php
S CustomerController.php
S …
2
votes
2answers
72 views
What is the overhead involved in a mode switch
Hi
Many a times i read/hear the argument that making a lot of system calls etc would be inefficient since the application make a mode switch i.e goes from user mode to kernel mode and after executing …
0
votes
3answers
102 views
Method not being called in switch statement
Edit: Works perfectly in debugger now, but block doesn't rotate at all when run normally..
I'm having a problem that I've run through the debugger a ton and have narrowed it down to this.
I've got a …
0
votes
1answer
67 views
Switching a view
Hello!
I have a problem with switching views in an iPhone application.
I have the source code of "Beginning iPhone 3 Development" …
0
votes
3answers
63 views
The old switcheroo (switch position in file)
Hi All,
I would really appreciate if somebody could help me/offer advice on this.
I have a file, probably about 50000 lines long, these files are generated on a weekly basis. each line is identical …
0
votes
1answer
32 views
How to relocate copied svn folder
Hey all,
i copied an existing svn folder (a) to a new folder b and want to also switch the repository url. Its still pointing to a repo.
i try svn switch --relocate but only get:
svn: Relocate can …
3
votes
9answers
225 views
C# Switch Statement refactoring
The purpose of the code below is to determine if a particular date qualifies as a "weekend" i.e after 12:00 PM on Thursday, minimum 2 days and before Monday 12:00 PM
Is there a better way? If-Else …
1
vote
3answers
104 views
C# switch/break
It appears I need to use a break in each case block in my switch statement using C#.
I can see the reason for this in other languages where you can fall through to the next case statement.
Is it …
2
votes
11answers
284 views
Code smell in this switch statement?
I'm wondering where a switch statement of this style should be changed to an if else statement.
switch (foo) // foo is an enumerated type
{
case barOne:
if (blahOne)
{
…
1
vote
5answers
231 views
What is the best way to write a C# application “kill switch”?
I need to write a "kill switch" into my C# application for licensing/billing purposes. What is the best way to do that?
The requirements are as follows (its actually 2 kill switches):
1 - "passive …
2
votes
4answers
162 views
Switch Statement with Strings C#
I need to write something that will get the start-up arguments and then do something for those start-up args, and I was thinking that switch would be good but it only accepts for ints and it has to be …
