The easiest way is to just identify a common problem or nuisance you have when working, and build an application to make that part of your computing life easier. The first reasonably complicated program I wrote was not all that complicated--it just added syntax sugar for global variables in a BASIC variant that I would use to make games with (arrays were global cross-module, but nothing else). By doing this, I learned how to structure larger programs, and how to add syntax highlighting and integrated tools in various editors (Notepad++, jEdit, and Notepad++) so I could add my program as an intermediary build step. I wouldn't have had any reason to look into customizing text editors had I not encountered this problem.
Unfortunately, these situations tend to creep up most when programming applications, so maybe you don't have any serious showstoppers. In that case, pick a topic you're interested in. Could be social networking, games, or managing your music collection. Start with the interface design. Identify what you want it to do, and how would be the most intuitive way to to do it. This doesn't need to be final, just a guide for how you are starting to envision the final product to turn out.
From there it's a process of modularizing the problem. If your application calls for an object-oriented approach, maybe read a couple of books on object oriented design and design patterns if you haven't read them already. These may help you solve organizational problems you encounter. The Head First books on those two topics are pretty good introductions.
For me, the only way is to dive in. I learn something new with every project, and just add it to my accumulated knowledge and remember what to do and what not to do next time.