In my program, there are several boxes that a user can click on. When he clicks on these boxes, he should be able to input text, which will be stored and displayed on screen from within the confines of these boxes.
In just about every program that requires keyboard input, there is that blinking, black cursor to indicate where the next letter will be printed. I need to create one of these.
I noticed the mention of a function in the tutorials that returns in the position of a letter inside a string; it further reads that this might be useful for cursor display. Should i try to use this function to create my cursor, or is there a more appropriate strategy I should follow?