planning

Where are some good resources for word templates for programming needs?

For example, I have a wide variety of needs for templates, like in creating project plans, project specifications, requirements etc. But I have never created my own forms before, so it really helps to see other practical/actual examples. Is there a good central resource for ms word templates for programmers/programming? I have just st...

Long-term .NET plan (or roadmap)?

Does anyone know what is the Microsoft perception for the .NET future? Being mostly based on Delphi microISV shop I know that Delphi's future is uncertain but a few milestones are already announced in their roadmap: support x64 bit building native executables for Mac building Linux native executables QT bindings for VCL replacement Da...

Find ALL paths in a grid between 2 nodes

I'm trying to find all the paths between 2 nodes in a grid, and the path has to go through all the node from start to end. Example (Start = S, End = E) 0 0 0 0 S 0 0 0 E The answer for the above is 2 paths: (ignore the '.''s) 0-0-0 |.......| 0 S-0 | 0-0-E 0-0-0 |......| 0 S 0 |...|...| 0-0 E I thought of using recursing, but g...

Implementing ACL in Crystal Reports 2008

My team have been working on implementing reports using Crystal Reports 2008. We are faced with the following problem: We need to be able to organize the reports into groups (representing the various departments in our workplace). The groups will have access to only the reports which they are authorized to. Is there any way to define th...