|
Windows Programming Help
I'm fairly new to windows programming and am currently teaching myself MFC so I don't know the windows API at all.
My main area that you write in is based off of the CView class and I have a notepad type program right now. How do you get individual pieces out of the view? I found the
GetWindowText(LPTSTR lpszStringBuf, int nMaxCount) and the GetWindowTextLength() functions
but I only want one letter at a time. So how would I get one letter at a time out of the view and increment that point each time?
|