struct MyControl : public Ctrl
{
Point MyCursor; //keeps track of insertion point, so can be used to position the caret
...
void Paint(Draw &drw)
{
..drw.Draw_all_kinds_of_stuff(..);
}
};
.. so the caret functions are available I just can't figure out how to apply/use them.