For me, it has always started with an idea and a problem to solve.
For example, I had learned C in 9th/10th grade on my own, and then wanted to learn this "C++" thing. I had an idea for this simple little "Quote of the Day" app that would greet me when I booted my machine (this was back in DOS and autoexec.bat). I realize it didn't have much to do with OO but I used it as a challenge to begin thinking that way and wrote the app.
I often meet programmers today who seem overwhelmed by the sheer size of the frameworks and other "stuff" around the languages and what not today. It almost paralyzes them from really exploring because the fear of the unknown stops them from spelunking.
When I didn't know how to open a file and read its contents (for my quote of the day app), I started digging (The Programmer's BBS! and spent way too much at B. Dalton/Waldenbooks back in the day.) for answers and ultimately rigged up a solution. I have also always been interested in the best solution, so when I would find a better way to do it, or learned that I had maybe not solved a problem appropriately I would refactor my code.
Start with an idea, a problem, and then write code.