Author Topic: Typing in Code::Blocks  (Read 4718 times)

Offline New2Coding

  • Single posting newcomer
  • *
  • Posts: 2
Typing in Code::Blocks
« on: April 30, 2013, 12:53:49 pm »
As you can probably guess im quite new to Code::Blocks, i am also sorry if this question may sound stupid. I was typing away working on a simple program and i by accident pressed a wrong key somewhere because since then instead of getting a line between letters when editing I get a line below the letters. When trying to edit like this the text infront of the this line is deleted in favour of the new text im typing . Im sure it's an easy fix but I don't know how to :( .

Offline oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13413
    • Travis build status
Re: Typing in Code::Blocks
« Reply #1 on: April 30, 2013, 01:21:02 pm »
I couldn't understand you problem.
Can you explain the sequence of keys you're pressing and the expected output and the real output.

Also check you insert key.
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

Offline New2Coding

  • Single posting newcomer
  • *
  • Posts: 2
Re: Typing in Code::Blocks
« Reply #2 on: April 30, 2013, 01:42:30 pm »
thanks, i knew it would simple. Pressing the insert key worked. :)

Offline ollydbg

  • Developer
  • Lives here!
  • *****
  • Posts: 5916
  • OpenCV and Robotics
    • Chinese OpenCV forum moderator
Re: Typing in Code::Blocks
« Reply #3 on: April 30, 2013, 02:32:22 pm »
I couldn't understand you problem.
Me too.
If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.