Sep 25, 2001 #1 bubak Programmer Jun 25, 2001 208 SK Please, this must be a simple one CPaintDC dc(this); dc.DrawText(strTime,CRect(0,0,100,110),DT_BOTTOM|DT_RIGHT); Why does it write nothing? dc.textOut works fine... but...
Please, this must be a simple one CPaintDC dc(this); dc.DrawText(strTime,CRect(0,0,100,110),DT_BOTTOM|DT_RIGHT); Why does it write nothing? dc.textOut works fine... but...
Sep 25, 2001 1 #2 IonelBurtan Programmer May 25, 2001 601 RO I think the problem is with your DC. CPaintDC for some strange reason do not draw the text. Have you tried: (?) CClientDC dc(this); or CDC* pDC=GetDC(); HTH, s-) Blessed is he who in the name of justice and goodwill, sheperds the weak through the valley of darkness... http://www20.brinkster.com/ionelb Upvote 0 Downvote
I think the problem is with your DC. CPaintDC for some strange reason do not draw the text. Have you tried: (?) CClientDC dc(this); or CDC* pDC=GetDC(); HTH, s-) Blessed is he who in the name of justice and goodwill, sheperds the weak through the valley of darkness... http://www20.brinkster.com/ionelb
Sep 25, 2001 Thread starter #3 bubak Programmer Jun 25, 2001 208 SK Yes, that's it , thx. I've already checked color, map mode, font, but this is the right thing ;-) thx Upvote 0 Downvote
Yes, that's it , thx. I've already checked color, map mode, font, but this is the right thing ;-) thx