Member 8534035 wrote:
...the tabulator is ignored completely.
Of course, since it was not meant to handle it as a special case. One solution would be to call AfxExtractSubString() to break your source string up into its individual tokens. Then you could call InsertItem() to insert an item in the list control, followed by SetItemText() to set the text of subitems.
"One man's wage rise is another man's price increase." - Harold Wilson
"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons
"You can easily judge the character of a man by how he treats those who can do nothing for him." - James D. Miles
Solved by myself! In OnPaint() I changed the positions of the CStaticControls. Of course this is causing "recursive" WM_PAINT calls. I moved this code to other functions (OnSize, OnTimer,...), now it works!
oh...many thanks for the link! finally it works now! according to the link I override:
void CMainFrame::OnUpdateFrameTitle( BOOL bAddToTitle )
but this is affecting the application main title. but overriding
void CChildFrame::OnUpdateFrameTitle( BOOL bAddToTitle )
does exactely what I need! many thanks for your help! I searched already at least 2 hours for a solution!