Forum
Please
Log In
to post a new message or reply to an existing one. If you are not registered, please
register.
NOTE: Some forums may be read-only if you are not currently subscribed to
our technical support services.
Subject |
Author |
Date |
|
tera tera
|
Jan 8, 2010 - 5:49 PM
|
Hello. I want to draw bitmap in outercell.
Please teach a good function name.
|
|
Technical Support
|
Jan 11, 2010 - 5:17 AM
|
You can insert a picture grid cell into the corner area:
CExtGridWnd & wndGrid = . . .
CExtGridCellPicture * pPicCell = STATIC_DOWNCAST( CExtGridCellPicture, wndGrid.GridCellGet( 0, 0, -1, -1, RUNTIME_CLASS(CExtGridCellPicture) ) );
pPicCell->ImageModeSet( . . . );
CExtBitmap _bmp;
VERIFY( _bmp.Load . . . ( . . . ) );
pPicCell->BitmapSet( &_bmp );
|
|