** rant * Ughh! I’m surprised to be reading so many comments about just start coding on this thread, where I thought the caliber of developer is a little higher. I’ve had to fix way too many programs where the philosophy was something working is better than nothing, so just code it. Those are the programs where each fix creates 2 new problems. THAT IS the reason for the poor level of software quality out there. It is a deserved reputation. It is the attitude that allows software jobs to be shipped overseas without the dramatic loss in quality that one would expect.** end rant *
Back to the original question:)
I solved the answer to your question by establishing a personal methodology for developing software. I follow the process every time and improve what didn’t work last time. I then back fit it into the company process. Eventually the process becomes fairly automatic. I keep a checklist of steps so it is available next time as each step feeds into the next.
I think a lot of the reason for not knowing which design approach to take is because you truly don’t understand the problem at hand. You may think you know what it is supposed to do, but you don’t really know what the system is supposed to do. Thus, you are worried about making the wrong choice because you have a lot of what ifs in the back of your mind. I solve this problem by always starting with the Use-Cases. The Use-Cases make you define the problem and identify exactly what the system is supposed to do.
I don't necessarily follow the strict definition of a Use-Case, I make the Use-Case a tool for what I need to get my job done, not what the theorists say it is supposed to be. Through practice, I have learned to write them in such a way that the architectural design just naturally falls out with little effort on my part (if I wrote the Use-Cases correctly). Then each of the modules will either design itself, or I write some more Use-Cases at the module level to understand the problem further where it’s needed.
Since I adopted this approach, I can’t remember the last time I got stuck in the analysis paralysis phase. I also like my designs a lot better because there is a natural ordering and flow-down. And most importantly, the designs are easy to understand.