flowchart

Using Database entries to dynamically create a visio diagram

Is this possible? We have a Configuration Management Database that stores information such as our servers, what datacentre they're stored in, applications that reside on them, as well as interfaces that send data from one application to another. We would like to use Visio to connect to our SQL 2005 database, and automatically generat...

Best application for process flow with expandable attributes

I am looking for the best software application to do the following I have a set of use cases that are in relationship to each other. I want to show an overview of this relationship. If the user desires the attributes for each use case (such as business rules, data elements, etc) should be expandable. This is potentially a large map whic...

Embedding a flowchart design surface in a .net application

I need to incorporate a flowchart design surface into an app we're developing to allow users to create what are essentially workflows/schedules. I need to be able to create my own 'shapes', set custom properties on them and possibly have a bit of logic in there too (if, while etc). I know I need to take a look at hosting WF in the app, ...

algorithm for calculating the sum of value in the Array and Big O Notation

How to find an algorithm for calculating the sum value in the array?? Is is Something like this? Algorithm Array Sum Input: nonnegative integer N, and array A[1],A[2],...,A[N] Output: sum of the N integers in array A Algorith Body: j:=1 sum:=0 while j<N sum := sum + a[J] j:=j+1 end while end Algorithm Array Sum And how ...

Tools or programming libraries to visualize custom logic

I am looking for tools to aid in the visualization of custom business logic used to perform document generation. The logic is expressed as an object-oriented model consisting of a graph of decision points and rendering actions. The basic building blocks are relatively simple, but the overall decision tree is quite large and complex makin...

How much planning do you do before starting to code?

When you're starting a new project, how do you plan for it or how long does it take? Pseudocode? Flowcharts? Do you try to think of all the classes in advance? TBH, i never plan anything. I get straight to it and think of solutions as problems arise. Mostly because the few times i tried planning in advance, i would always forget somet...

Flow Chart to model inspection process in .NET winform application

We're writing a .NET winform application and I'm looking for options on one of the features. The end user for this system will be defining inspection processes which need to be easy to follow and will be used to show inspectors their options when inspecting a product as well as to drive the inspection module on which questions need to b...

Looking for a customizable "flowchart builder " builder

I need to create a customized graphical flowchart builder. There are only three classes of connectable components, and two kinds of connectors from which the flowchart is constructed. Each component and connector class, though, needs to have a tailored set of properties associated with the instances of their class. So I'm looking for a ...

Are there any conventions for flowcharting that distinguish a switch from a if-else chain?

I had to do a overview for a customer meeting, and they requested flow charts. It had never occurred to me that there was no switch symbol in any of the flow charting I've seen. I know functionally they are similar, but documentation should represent the code you've written or are planning too. Maybe I'm just being picky, but it seem...

What or where is this basic pseudocode flowcharting program?

I'm looking for a specific program I've seen 2-3 people use in college that automatically generated flow charts from pseudocode. I've looked at every link I could find in the 20+ flowcharting threads here on S.O. I did not see the one I am looking for, I've googled and no luck. A fairly simple, flow chart would actually be generated by...

Is there a tool for .Net that creates a programme / dependency flow chart from IL / source?

I am trying to see how a bunch of .Net functions are used throughout a very large project and I would like to visually chart them so I can see the flow from / to each function. There are only a few functions I want to track so it is not an exhaustive view. Thanks Ryan ...

NetBeans Plugin for flowchart

Hi all, I am using netbeans 6.5. Is there any plugin available creating flowchart from the netbeans project? I am using jdk 1.6. I need to create simple flow chart of each and every method in the project. ...

Best Flowchart Software (Online or Offline, Preferrably free)?

I would like to hear from some of you veteran programmers out there about your preference for flowchart software, so if you wouldn't mind saying what you use for your programs, and why? Thanks, I'm a beginning programmer in my second class. ...

Generate dynamic flow-chart

Hi, We are looking for some code/component that can create a flow-chart (image) dynamically, preferably in .NET/C# (although a Silverlight/Flash-component that takes a XML/JSON-feed will also be fine). For example we have a (business) quote that goes through te following steps before it becomes final: Requested -> Pending -> Read...

language to create flowcharts

Hi, This seems like something which must have been answered before, but I can't find anything appropriate in the question archives. Basically, I'm looking for a little Domain Specific Language to create flowcharts. I'm terrible at graphic design and making things look nice, and I'd really like a langauge where I could write something in...

Free Code-to-Flowchart/UML tool for C# code

I'm looking for a free tool similar to Visustin. Are there any like that that exist? ...

free, cheap or open source UML and Visio-like tool

Hi Guys, We're looking for free/cheap or open source UML tools. What tools have you used ? It's OK if there are 2 tools, one each for Flow charts and UML. If a UML tool or Flow Chart tool is cheap(we're a NON-PROFIT), and no open source is good enough, we're open to look at them. Thanks and BR, ~A ...

tool to convert c++ source code to flow chart

I have an old C++ code with multiple nested if else Is there a tool that will take C++ code and produce a flow chart ? a free tool will be the best ;-) ...

How to display flowcharts dynamically in java?

I want to develop a java desktop application that takes some inputs from the user and store it in a database. After that, when user clicks on a button (say display) it displays the information, entered by him earlier, in a flowchart like format. Can I display that information in the form of flowcharts? ...

Advice software to create flow-charts of programm

Hi. Can you advice me software to create flow-charts for program logic. My problem is that I've created complicated algorithm with lots of if...else and I need to create flow-chart for all of that to avoid mistakes. The example of what I want to have is But I don't want it to create flow-chart from source code. I want to create it mysel...