Advertisement
Advertisement
| 03.01.2008 at 11:18AM PST, ID: 23206455 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: |
void CMainDlg::OnPaint()
{
CPaintDC dc(this); // device context for painting
// TODO: Add your message handler code here
dc.MoveTo(0, 20);
dc.LineTo(300, 20);
// Do not call CDialog::OnPaint() for painting messages
}
|