Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
144 views

Would you write this code the same way using OOP PHP?

I'm trying to go oop with one of my scripts. It's a contact script which deals with encodings when sending an email through jQuery's ajax function. I wanted to make the user able to use the same ...
3
votes
5answers
2k views

Flow chart generator from source files

I'm searching for a tool that let me generate a flow chart for a given project. It is difficult understand others code by looking at code, a flow chart can be very helpful. My Project is in VS 2010 ...
3
votes
4answers
327 views

“if” versus “switch” [closed]

Possible Duplicate: is “else if” faster than “switch() case” ? I've encountered a lot of situations lately where I have very simple conditionals and need to branch ...
2
votes
1answer
1k views

Code flow visualization software - C#

Is there any tool, free or commercial, that can generate flow visualization graphs for a c# method? It should be able to deal with decision points (maybe represent them as vertices) and with ...
1
vote
0answers
44 views

Modifying the event object in Javascript

In Javascript, the common understanding is that you shouldn't modify objects you don't own. I understand and agree with the arguments. Dispite that, I am considering to add a couple of properties the ...
1
vote
1answer
54 views

Why isn't my variable counting correctly?

I am having a problem with my code below. When the user selects a RadioButton (such as reload) and clicks the submit button, I want an ammo counter in the screen to increase by 1. On a RadioButton ...
1
vote
2answers
197 views

Exception Handling and Program Logic

We all know that using Exception Handling to control your program's logical flow is bad. That is, you would never do: public void someMethod(Object someObject) { try { ...
0
votes
1answer
36 views

jquery chunk not running

I have the following jquery below. When the user clicks .commentCount, I want this div called #commentSec to open up, and then some other elements on the site change. This jquery chunk runs fine. ...
0
votes
3answers
250 views

c# code flow mapping/visualization utility?

I've been asked to re-write (from the ground up) an existing c# winforms application. Unfortunately, this code has been modified by at least a dozen different developers over the past three or four ...
0
votes
3answers
1k views

Need help to draw control-flow graph with GLEE and C#

I am trying to draw a control-flow graph(CFG) from source code using the GLEE graph library and C# language. Problem is, I am new to GLEE. I need a tutorial or sample programs/projects to help me get ...